/* Basic reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Navbar container */
.navbar {
  background-color: #333;
  overflow: hidden;
}

/* Navigation list */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

/* Navigation links */
.nav-list li a {
  display: block;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
}

/* Hover effect */
.nav-list li a:hover {
  background-color: #575757;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown button */
.dropbtn {
  cursor: pointer;
  display: flex;
  align-items: left;
  gap: 8px; /* Space between text and arrow */
}

/* Arrow styling */
.arrow {
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

/* Rotate arrow when dropdown is active (optional) */
.dropdown:hover .arrow {
  transform: rotate(180deg); /* Flips arrow upward */
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #444;
  min-width: 100px;
  z-index: 1;
}

/* Dropdown links */
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Hover effect for dropdown links */
.dropdown-content a:hover {
  background-color: #666;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
