/* Dark Theme Specific Styles */

body {
  background-color: #0F172A;
  color: #F1F5F9;
}

/* Enhanced dark backgrounds */
.bg-darkbg {
  background-color: #0F172A;
}

.bg-cardbg {
  background-color: #1E293B;
}

/* Dark mode card shadows */
.shadow-dark {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Glow effects for dark theme */
.glow-primary {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.glow-accent {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

/* Dark theme inputs */
input, select, textarea {
  background-color: #0F172A;
  border-color: #334155;
  color: #F1F5F9;
}

input:focus, select:focus, textarea:focus {
  border-color: #8B5CF6;
  outline: none;
}

/* Dark links */
a {
  transition: color 0.2s ease;
}
