.admin-menu-bar {
    background-color: #0077cc;
    color: white;
    padding: 0.5rem 1rem;
    position: relative;
    font-family: Arial, sans-serif;
  }
  
  /* Hide menu toggle button on desktop */
  .menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
  }
  
  /* Menu list styles */
  .menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
  }
  
  .menu-list li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 0.75rem;
    display: block;
    border-radius: 4px;
  }
  
  .menu-list li a:hover,
  .menu-list li a:focus {
    background-color: #005fa3;
    outline: none;
  }
  
  /* MOBILE: Show toggle button and hide menu initially */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .menu-list {
      flex-direction: column;
      background-color: #0077cc;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      display: none;
      z-index: 1000;
      border-top: 1px solid #005fa3;
    }
  
    .menu-list.show {
      display: flex;
    }
  
    .menu-list li a {
      padding: 1rem;
      border-bottom: 1px solid #005fa3;
    }
  }
  
  .admin-menu-bar {
  background-color: #333;
  color: #fff;
  padding: 0.5rem 1rem;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.menu-list > li {
  position: relative;
}

.menu-list a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  display: block;
}

.menu-list a:hover {
  background-color: #444;
}

/* Dropdown styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  min-width: 180px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 4px;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a:hover {
  background-color: #555;
}

/* Mobile toggle (already exists, just make sure it doesn't break) */
.menu-toggle {
  display: none;
}

/* Responsive: you can tweak this to hide dropdown hover and make it click-to-open on small screens */
@media (max-width: 768px) {
  .menu-list {
    display: none;
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    margin-left: auto;
  }

  .menu-list.show {
    display: flex;
  }

  .dropdown:hover .dropdown-menu {
    display: none; /* disable hover dropdowns on mobile if needed */
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
  }
}
