/* Light mode styles */
body {
    background-color: #fff!important;
    color: #000!important;
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #333!important;
        color: #fff!important;
    }
}