/* Property of Sistema THEAD. All rights reserved. */
/*
 * Boot blocker overlay styles.
 *
 * Loaded by pages that gate on server availability. Kept small and
 * self-contained so it can render before the main stylesheet is parsed.
 */

.boot-blocker {
    position: fixed;
    inset: 0;
    background: #1a1a1a;
    color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    z-index: 2147483647;
    padding: 2rem;
}

.boot-blocker__box {
    max-width: 520px;
    text-align: center;
}

.boot-blocker__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin: 0 0 1rem;
    color: #ff8a65;
}

.boot-blocker__body {
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 0.75rem;
}

.boot-blocker__body--muted {
    opacity: 0.72;
    font-style: italic;
}

.boot-blocker__retry {
    margin-top: 1.75rem;
    padding: 0.85rem 1.75rem;
    background: #ff8a65;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.boot-blocker__retry:hover,
.boot-blocker__retry:focus-visible {
    background: #ffb093;
}

.boot-blocker__retry:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}
