/* ==== Header Auth Links (Giriş, Profil, Dropdown) ==== */
.auth-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.auth-links .btn {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.auth-links .signup {
  background: #00ff90;
  color: #0b111a;
}
.auth-links .signin {
  background: transparent;
  border: 2px solid #00ff90;
  color: #00ff90;
}
.auth-links .btn:hover {
  opacity: 0.8;
}
.auth-links .profile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  text-decoration: none;
}
.auth-links .profile-link img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00ff90;
}
.auth-links .profile-link .profile-icon {
  font-size: 2rem;
  color: var(--muted);
  transition: color 0.3s;
}
.auth-links .profile-link:hover .profile-icon {
  color: #00ff90;
}
/* Profil Dropdown */
.profile-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 55px;
  right: 0;
  background: #1e242f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 100;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.dropdown-menu a,
.dropdown-menu button.btn {
  padding: 12px 16px;
  color: var(--text);
  text-decoration: none;
  transition: 0.2s;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-size: 1rem; /* Ölçünü linklərlə eyniləşdirir */
  font-weight: 400; /* Çıxış düyməsinin qalınlığını normallaşdırır */
}

.dropdown-menu a:hover,
.dropdown-menu button.btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #00ff90;
}

.profile-dropdown.active .dropdown-menu {
  display: flex;
}
