/**
 * Force Light Mode
 * Ensures site always stays in light mode
 */

/* Remove dark mode class */
body.dark,
body.dark * {
    /* Force light mode styles */
}

body {
    /* Ensure light mode is always active */
}

/* Hide dark logos, show light logos */
.dark-logo {
    display: none !important;
}

.normal-logo {
    display: block !important;
}

#footer-logo-dark {
    display: none !important;
}

#footer-logo-normal {
    display: block !important;
}

/* Hide light/dark toggle button */
.light-dark-btn-wrap {
    display: none !important;
}

/* Ensure cookies card is light */
.cookies-card.dark {
    background: hsl(var(--white)) !important;
    border-color: hsl(var(--base)) !important;
}

/* Remove any dark mode styles */
.dark {
    /* Override any dark mode styles */
}



