/* Auth-specific styles */
.auth-tab.active {
  border-bottom-color: #f39c12 !important;
}

.auth-form input:focus {
  outline: none;
  border-color: #f39c12;
  box-shadow: 0 0 5px rgba(243, 156, 18, 0.3);
}

.auth-form button:hover {
  background: #e67e22 !important;
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

#user-profile {
  display: none;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

#user-profile:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f39c12;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
}

.user-email {
  font-size: 14px;
  color: #ccc;
}

#auth-button {
  background: #f39c12;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

#auth-button:hover {
  background: #e67e22;
  transform: translateY(-1px);
}

/* Light mode adjustments */
body.light-mode .auth-form input {
  background: #fff;
  color: #111;
  border-color: #ddd;
}

body.light-mode .modal-content {
  background: #fff;
  color: #111;
}

body.light-mode #user-profile:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .user-email {
  color: #666;
}