/* Base styles */
.navbar {
  background-color: #606c38;
  padding: 10px;
  position: relative;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-toggle {
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: none;
}

/* Navbar links (default for desktop) */
.navbar-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

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

/* Mobile styles */
@media (max-width: 768px) {
  .navbar-links {
    flex-direction: column;
    background-color: #606c38;
    position: fixed;
    top: 0;
    left: -250px; /* hidden off-screen to the left */
    width: 250px;
    height: 100vh;
    padding: 20px;
    transition: left 0.3s ease-in-out;
  }

  .navbar-links.active {
    left: 0;
  }

  .navbar-toggle {
    display: block;
  }
}

/* Badge styling */
.notification-badge {
  background: red;
  color: white;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 4px;
  font-size: 12px;
}
