/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #111;
  border-bottom: 1px solid #333;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 0.9rem;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.nav-btn:hover {
  background-color: #222;
  color: #fff;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  overflow: hidden;
  z-index: 200;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.1s, color 0.1s;
}

.dropdown a:hover {
  background-color: #2a2a2a;
  color: #fff;
}

.nav-item:hover .dropdown {
  display: block;
}
