@import "shared/base.css";

:root {
    /* City Blue Theme Overrides */
    --bg-color: #f0f4f8;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --accent-color: #3182ce;
    /* City Blue */
    --accent-hover: #2c5282;
    --warning-yellow: #ffc107;
    /* Fix for black progress bar */
}

h1 {
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

/* Custom Loader for Bob (if different from base) */
.scandal-bar-fill {
    background: repeating-linear-gradient(45deg,
            var(--warning-yellow),
            var(--warning-yellow) 10px,
            var(--text-primary) 10px,
            var(--text-primary) 20px);
}