/* Dropdown Structure */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  color: white;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  position: relative;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: #ccc;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #111;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  padding: 0.5rem 0;
  border-radius: 5px;
  z-index: 1001;
  top: 100%;
  left: 0;
  min-width: 160px;
}

.dropdown-menu a {
  color: white;
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
  white-space: nowrap;
}

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

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

/* Ensure nav links are aligned */
.site-nav a,
.dropdown {
  display: inline-block;
}
