/* side button box */
.btnbox {
    position: fixed;
    top: 275px;
    right: -31px;
    padding: 16px; /* 15px padding */
    width: 114px; /* Set a specific width */
    background-color: #cccccc;
    /* border: solid black; */
    border-radius: 5px 5px 0 0; /* Rounded corners on the top right and bottom right side */
    transform: rotate(-90deg) !important;
    z-index: 1;
}
.sidebarbtn {
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Increase font size */
    color: rgb(0, 0, 0);
}
  
  /* The side navigation menu */
  .sidebarDrawer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 99999; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #FFF;  /* Black */
    overflow-x: hidden; /* Disable horizontal scroll */
    overflow-y: hidden; /* Disable vertical scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    border: grey;
  }
  
  /* The navigation menu links */
  .sidebarDrawer a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #cccccc;
    display: block;
    transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidebarDrawer a:hover {
    color: #f1f1f1;
  }
  
  /* Position and style the close button (top right corner) */
  .sidebarDrawer .closeSidebar {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  /* 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) {
    .sidebarDrawer {padding-top: 15px;}
    .sidebarDrawer a {font-size: 18px;}
  }
