/* ── License State Overlay & Banner ─────────────────────────────────────────── */

/* Full-screen blocking overlay for expired licenses */
.license-expired-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.license-expired-card {
    background: var(--color-surface, #fff);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    max-width: 480px;
    width: 90vw;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.license-expired-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-error, #dc2626);
    margin: 0;
}

.license-expired-card p {
    color: var(--color-text-secondary, #64748b);
    margin: 0;
    line-height: 1.6;
}

/* Thin warning banner for grace period */
.license-grace-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-warning-bg, #fef3c7);
    color: var(--color-warning-text, #92400e);
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-warning-border, #fbbf24);
}

.license-grace-banner .material-symbols-outlined {
    font-size: 1.1rem;
}
