/* ── Splash Screen ─────────────────────────────────────────── */
.fc-splash {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1565C0;
    color: white;
    gap: 12px;
}

.fc-splash-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.fc-splash-text {
    font-size: 22px;
    font-weight: 500;
    font-family: Roboto, sans-serif;
}

.fc-splash-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: fc-spin 0.8s linear infinite;
    margin-top: 8px;
}

@keyframes fc-spin {
    to { transform: rotate(360deg); }
}

/* ── Blazor Error UI ────────────────────────────────────────── */
#blazor-error-ui {
    background: #b00020;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,0.2);
    color: white;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    right: 0;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ── Custom Utilities ───────────────────────────────────────── */
.fc-currency {
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}

.fc-positive { color: #2e7d32; }
.fc-negative { color: #b00020; }
.fc-neutral  { color: #1565C0; }
