/* dark.css — additional dark-mode component overrides */

/* Navbar glassmorphism tint in dark */
.dark-theme .navbar {
  background: rgba(8, 14, 26, 0.94);
  border-bottom-color: rgba(30, 45, 66, 0.9);
}

/* Card glow in dark */
.dark-theme .card:hover {
  box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-lg);
}

/* Select background fix */
.dark-theme select.form-control {
  background-color: var(--bg-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 16px;
  padding-right: 2.75rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Image overlays in dark */
.dark-theme .hero-image-overlay {
  background: linear-gradient(to right, rgba(8, 14, 26, 1) 40%, rgba(8, 14, 26, 0.6) 100%);
}

/* Warning banner dark */
.dark-theme .alert-warning {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}