<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Kansas (KS)
 * Primary: #002664
 * Secondary: #ffd700
 */

/* State-specific CSS variables */
:root {
    --ks-primary: #002664;
    --ks-secondary: #ffd700;
}

/* Header and Navigation */
.state-header {
    background-color: #002664;
    color: white;
}

.state-nav {
    background-color: #002664;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.state-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.state-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: #002664;
    color: white;
    border-color: #002664;
}

.btn-primary:hover {
    background-color: #002664;
    opacity: 0.9;
}

.btn-secondary {
    background-color: #ffd700;
    color: black;
    border-color: #ffd700;
}

.btn-secondary:hover {
    background-color: #ffd700;
    opacity: 0.9;
}

/* Links */
a {
    color: #002664;
}

a:hover {
    color: #002664;
    opacity: 0.8;
}

/* Accent sections */
.accent-section {
    background-color: #ffd700;
    color: black;
    padding: 2rem;
    border-radius: 4px;
}

/* Footer */
.state-footer {
    background-color: #002664;
    color: white;
}

.state-footer a {
    color: rgba(255, 255, 255, 0.8);
}

.state-footer a:hover {
    color: white;
}

/* State-specific overrides can be added below */
</pre></body></html>