nav {
    position: sticky;
    height: 70px;
    width: 100%;
    align-items: center;
    background: #fff;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: left;
    text-align: left;
    align-items: center;

  }
  .sidebar {
    position: fixed;
    top: 0;
    left: -80%;
    width: 80%;
    height: 100%;
    background-color: #f2f2f2;
    z-index: 1;
    transition: left 0.5s;
    overflow: auto !important;

  }



  .closeButtonContainer{
    display: flex;
    justify-content: right;
    text-align: right;
    align-items: center;
    width: 100%;
    height: 10%;
  }
  
  .sidebar.open {
    left: 0;
  }
  
  .open-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
    display: block;
  }
  
  .close-btn {
    display: flex;
    margin: none;
    margin: 10px;
    margin-right: 15px;

  }
  


  .liSidebar {
    padding: 20px;
    border-bottom: 1px solid #ccc; /* Add a border to the bottom of each list item */
    font-size: 110%;
  }
  
  .liSidebar:last-child {
    border-bottom: none; /* Remove the border from the last list item */
    border: none;
    pointer-events: none;
  }

  .liSidebarFlagOTD {
    pointer-events: none;
  }
  .ulSidebar {
    list-style: none;
    margin-left: 20px;
    margin-right: 60px;
    padding: 0;
  }
  
  .liSidebar {
    padding-bottom: 35px;
    padding-top: 35px;
  }
  
  .liSidebar:hover {
    background-color: #ccc;
  }
  
  .navbarText{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }