:root {
    --PRIMARY-color: #2e7d32; /* Forest green */
    --PRIMARY-color--light: #4caf50;
    --PRIMARY-color--dark: #1b5e20;
}

/* Override for dark mode */
@media screen and (prefers-color-scheme: dark) {
    :root {
        --PRIMARY-color: #2e7d32; /* Forest green */
        --PRIMARY-color--light: #4caf50;
        --PRIMARY-color--dark: #1b5e20;
    }
}

/* Fallback for specific title */
.md-content h1 {
    color: #2e7d32 !important;
}
