/* Fixed sidenav, full height */
.sidenav-m {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: hsl(0, 0%, 7%);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidenav-m .closebtn-m {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  /* Style the sidenav links and the dropdown button */
  .sidenav-m a, .dropdown-btn-m {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 17px;
    color: #f8f2f2;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
  }
  
  /* Add an active class to the active dropdown button */
  .active-m {
    background-color: green;
    color: white;
  }
  
  /* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
  .dropdown-container-m {
    display: none;
    background-color: #262626;
    padding-left: 8px;
  }
  

  
  /* Some media queries for responsiveness */
  @media screen and (max-height: 450px) {
    .sidenav-m {padding-top: 15px;}
    .sidenav-m a {font-size: 18px;}
  }