:root {
    --primary: #FFE39F;
    --primary-dark: #CCB370;
    --secondary-light: #A7A8AA;
    --secondary-dark: #3C3D3F;
    --secondary: #58595B;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #0dcaf0;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --white: #fff;
    --black: #000;
    --muted: #ccc;
    --border: #dee2e6;
    --background: #FAF7F0;
    --background-alt: #FFF8E5;
    --background-dark: #2F2F2F;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    --shadow-blue: rgba(13, 110, 253, 0.3);
    --shadow-blue-strong: rgba(13, 110, 253, 0.8);
    --shadow-green: rgba(25, 135, 84, 0.25);
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-lighter: rgba(0, 0, 0, 0.04);
    --shadow-dark: rgba(0, 0, 0, 0.6);
    --shadow-darker: rgba(0, 0, 0, 0.9);
    --border-light: #e0e0e0;
    --border-alt: #cfe2ff;
    --text: #212529;
    --text-light: #fff;
    --text-muted: #aaa;
    --text-secondary: #333;
    --text-info: #084298;
}

/* === Global Background Utilities === */
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-success {
    background-color: var(--success) !important;
}

.bg-danger {
    background-color: var(--danger) !important;
}

.bg-warning {
    background-color: var(--warning) !important;
}

.bg-info {
    background-color: var(--info) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-muted {
    background-color: var(--muted) !important;
}

.bg-gray {
    background-color: var(--gray) !important;
}

.bg-gray-dark {
    background-color: var(--gray-dark) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-border {
    background-color: var(--border) !important;
}

.bg-background {
    background-color: var(--background) !important;
}

.bg-background-alt {
    background-color: var(--background-alt) !important;
}

.bg-background-dark {
    background-color: var(--background-dark) !important;
}


/* === Global Text Utilities === */
.text-primary {
    color: var(--primary) !important;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-info {
    color: var(--info) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-dark {
    color: var(--text) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.text-gray-dark {
    color: var(--gray-dark) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-border {
    color: var(--border) !important;
}

.text-secondary-strong {
    color: var(--text-secondary) !important;
}

.text-info-dark {
    color: var(--text-info) !important;
}