/* ROOT VARIABLES - ENFORCING DARK THEME */
:root {
    --gold: #d4af37;
    --dark-bg: #020617;
}

body {
    background-color: #020617 !important;
    color: #f1f5f9 !important;
    font-family: 'Outfit', sans-serif;
}

/* SIDEBAR - DEFINITIVE STYLE */
.sidebar {
    background: rgba(2, 6, 23, 0.98) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 12px 20px !important;
    margin: 4px 10px !important;
    border-radius: 10px !important;
    transition: all 0.2s !important;
    border: none !important;
}

.nav-link i {
    color: var(--gold) !important;
    /* GOLD ICONS ONLY */
    width: 25px;
    text-align: center;
    font-size: 1.1rem;
    margin-right: 12px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(212, 175, 55, 0.12) !important;
    color: var(--gold) !important;
    transform: translateX(5px);
}

/* PREVENT BLUE OVERRIDES */
.text-primary,
.text-info {
    color: #38bdf8 !important;
}

.btn-primary {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #000 !important;
}

/* MODAL FIXES */
.modal-content {
    background: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.text-gold {
    color: var(--gold) !important;
}