/* Wrapped 2025 - Native Style */

/* Helper styles meant to sit on top of the main style.css */

.state-hidden {
    display: none;
    opacity: 0;
}

.loader-circle {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-bottom-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin: 0 auto;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    /* box-shadow removed as requested */
    background: transparent;
    /* Making it cleaner as per "no shadow" usually implies flat/clean */
}

.stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
}