.site-header {
  background: #141421;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #2a2a3a;
}
.logo-text a {
  font-size: 1.8rem;
  color: #7df9ff;
}
nav a {
  margin-left: 1rem;
  color: #f0f0f0;
}
nav a:hover {
  color: #d96efb;
}
.login-banner {
  background: #1f1f2f;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #1a1a2a;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  z-index: 999;
  white-space: nowrap;
  top: 100%;
  left: 0;
}

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

.dropdown-menu a {
  display: block;
  padding: 0.25rem 0;
  color: #f2f2f2;
}

.dropdown-menu a:hover {
  color: #7df9ff;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.oauth-status {
  font-size: 0.9rem;
  color: #f0f0f0;
  white-space: nowrap;
}

.oauth-status a {
  color: #7df9ff;
  margin-left: 0.5rem;
  text-decoration: none;
}

.oauth-status a:hover {
  color: #d96efb;
}
