/* Hide by default */
.bottom-tab-bar {
  display: none; 
}

@media screen and (max-width: 768px) {
  .bottom-tab-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #000; /* Black background */
    border-top: 1px solid #111;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.5);
  }

  .tab-item {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #fff; /* White text */
    font-size: 12px;
    padding: 5px 0;
  }

  .tab-item .icon {
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
    color: #fff; /* White icons */
  }

  .tab-item.active {
    color: #facc15; /* Yellow highlight (optional) */
  }

  .tab-item.active .icon {
    color: #facc15;
  }

  .avatar-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 2px;
    border: 2px solid #fff; /* Optional white border for contrast */
  }
  
  .top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  .menu-toggle {
    font-size: 30px;
    background: none !important;
    border: none !important;
    padding: 0px !important;
    color: black;
    margin: 0px !important;
    margin-top: -8px !important;
    display: inline-block;
  }
  
  .menu-toggle:hover,
  .menu-toggle:active,
  .menu-toggle:focus {
     color: black !important;
  }


  
  
  
  
  
  .drawer {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen initially */
    width: 80%;
    height: 100vh;
    background-color: #000;
    color: white;
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    padding: 2rem 1rem;
  }

  .drawer.open {
    right: 0;
  }

  .drawer .close-drawer {
    background: none !important;
    border: none !important;
    color: white;
    font-size: 30px;
    position: absolute;
    top: -5px;
    right: -2px;
  }

  .drawer-links {
    list-style: none;
    padding: 0;
    margin-top: 60px;
  }

  .drawer-links li {
    margin: 1rem 0;
    text-align:center;
  }

  .drawer-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }
}