/* Aggressive Light Mode Enforcer */
:root {
    color-scheme: only light !important;
    background-image: linear-gradient(0deg, #ffffff, #ffffff) !important;
    background-color: #ffffff !important;
    color: #000000 !important;
}

html,
body {
    background-image: linear-gradient(0deg, #F9FAFB, #F9FAFB) !important;
    background-color: #F9FAFB !important;
    color: #111827 !important;
}

/* Force specific container backgrounds if needed */
.container {
    background-image: linear-gradient(0deg, #F9FAFB, #F9FAFB) !important;
    background-color: #F9FAFB !important;
}

/* Force light mode even if 'dark' class is present (fallback) */
.dark body {
    background-color: #F9FAFB !important;
    color: #111827 !important;
}