/* The sidebar menu */
.sideBar {
    height: 100%;
    width: 0;
    position: fixed; 
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 35);
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px;
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
  }
  
  /* The sidebar links */
  .sideBar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: rgb(245, 242, 226);
    display: block;
    transition: 0.3s;
  }
  
  .sideBar a:hover {
    color: #f1f1f1;
    text-decoration: underline;
  }
  
  .sideBar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  /* The button used to open the sidebar */
  .navbtn {
    font-size: 20px;
    background-color: rgb(1, 30, 22);
    color: white;
    padding: 10px 15px;
    border: none;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbtn:hover {
    cursor: pointer;
  }

  .openbtn {
    font-size: 20px;
    background-color: #111;
    color: white;
    border: none;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .openbtn:hover {
    background-color: #444;
  }
  
  /* Pushing main content on nav open*/
  #main {
    transition: margin-left .5s; /* Transition effect */
    padding: 20px;
  }
  
  /* Small Screens*/
  @media screen and (max-height: 450px) {
    .sidebar {padding-top: 15px;}
    .sidebar a {font-size: 18px;}
    .openbtn {background-color: #111; color: white;}
  }