:root {
    --primary-color: #D42426;
    /* Christmas Red */
    --secondary-color: #165B33;
    /* Forest Green */
    --accent-color: #FDB813;
    /* Gold */
    --bg-color: #0b1c15;
    /* Very Dark Green */
    --card-bg: rgba(255, 255, 255, 0.1);
    --text-color: #f8fafc;
    --text-muted: #e2e8f0;
    /* Lighter slate for better contrast on dark bg */
}

/* Override Bootstrap text-muted */
.text-muted {
    color: var(--text-muted) !important;
}

body {
    background-color: var(--bg-color);
    /* Festive background with subtle snow-like dots */
    /* Festive background: Smoother gradient, no distinct dots */
    background: radial-gradient(circle at 50% -20%, #1a4c3b, #0b1c15);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
}

/* Adjust font sizes for Mountains of Christmas visibility */
h1,
h2,
h3,
.h1,
.h2,
.h3,
.h4,
.navbar-brand {
    font-family: 'Mountains of Christmas', cursive;
    letter-spacing: 1px;
}

h1.display-4,
.display-4 {
    font-size: 4.5rem;
    /* Larger main title */
}

h3.h4,
.h4 {
    font-size: 2rem !important;
    /* Larger wish titles */
}

.text-muted.lead {
    font-size: 1.5rem;
    font-family: 'Mountains of Christmas', cursive;
    color: var(--accent-color) !important;

}

/* Glassmorphism Card with Frost */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(to right, #ef4444, #eab308);
    /* Red to Gold */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(212, 36, 38, 0.5);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), #b91c1c);
    border: 1px solid rgba(255, 215, 0, 0.3);
    /* Gold border hint */
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 36, 38, 0.4);
}

.btn-primary-custom:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 36, 38, 0.6);
    background: linear-gradient(135deg, #b91c1c, var(--primary-color));
    color: #FDB813;
    /* Gold text on hover */
}

.form-control,
.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Status Badge */
.badge-active {
    background-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-inactive {
    background-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

a {
    text-decoration: none;
    color: inherit;
}