/* The side navigation menu */
input[type="text"]{
    padding: .25rem .5rem;
    border-radius: .125rem;
    font-size: 1rem;
}
.search-wrapper{
    display: grid;
    place-items: center;

}
.search{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}
.snippet-menu-item{
    display: flex;
    align-items: center;
    padding: .25rem .5rem;
    /* outline: 1px solid yellowgreen; */
    /* margin: .25rem 0; */
}
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; 
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: calc(var(--navbar-height) + var(--subnav-height)); /* Stay at the top */
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 1rem; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    /* transform: translateX(-100%); */
}
  
  /* The navigation menu links */
  .sidenav a {
    padding: .25rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */

  .menu-item-text{
    text-transform: uppercase;
  }
    /* -------- TOC Scrollbar ------------------------------------------------ */
    .sidenav {
      scrollbar-width: thin;
      scrollbar-color: var(--color3) var(--color2);
    }
    
    .sidenav::-webkit-scrollbar {
      width: 8px;
    }
    
    .sidenav::-webkit-scrollbar-track {
      background: var(--color2);
    }
    
    .sidenav::-webkit-scrollbar-thumb {
      background-color: var(--color2);
      border-radius: 4px;
    }

    /* .side-nav::-webkit-scrollbar {
      width: 30px;
  } */
  /* .side-nav::-webkit-scrollbar-track {
      background: var(--color6);
      
      border: 1px solid var(--color1);
    }
    .side-nav::-webkit-scrollbar-thumb {
      background: var(--color2);
      border: 1px solid var(--color1);
    }
  .side-nav::-webkit-scrollbar-thumb:hover {
      background: var(--color1);
  }
  .side-nav::-webkit-scrollbar-button{
      background-color: var(--color5);
      border: 1px solid var(--color1);
      color:  var(--color1); */
  /* }
  .side-nav::-webkit-scrollbar-button:single-button:vertical:increment{
      content: "v";
  }
  
  .side-nav::-webkit-scrollbar-button:single-button:vertical:increment::after{
      content: "v";
  } */
   /* --------------------------------------------------------------------------- */
  


  
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }