/* Styling for SailErrorBoundary's error card. Hosts that don't already define these
   (OO, KVS) reference this file; BBO ships equivalent classes in its own site.css. */

.sail-error-modal {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sail-reconnect-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(2px);
}

.sail-reconnect-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.sail-reconnect-icon { margin-bottom: 16px; }

.sail-reconnect-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
}

.sail-reconnect-message {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
}

.sail-error-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
