/* Komped Custom Styles */
/* Design tokens + type live in tokens.css. Most layout handled by Tailwind. */

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.loading-spinner {
    border: 3px solid var(--rule);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
