/* Full-screen fallback for requests that cannot reach the server. */
body.odish-offline {
    overflow: hidden;
}

.odish-offline-screen {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 100vh;
    padding: 24px;
    background: #f8f9fa;
    color: #212529;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.odish-offline-screen__content {
    width: 100%;
    max-width: 420px;
}

.odish-offline-screen__icon {
    width: 96px;
    height: 96px;
    margin-bottom: 24px;
}

.odish-offline-screen h1 {
    margin: 0 0 12px;
    font-size: 1.4rem;
    font-weight: 700;
}

.odish-offline-screen p {
    margin: 0 0 24px;
    color: #6c757d;
    line-height: 1.25;
}

.odish-offline-screen__retry {
    border: 0;
    border-radius: 8px;
    padding: 10px 20px;
    background: #e30613;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.odish-offline-screen__retry:hover,
.odish-offline-screen__retry:focus-visible {
    background: #c90511;
}

.odish-offline-screen__retry:focus-visible {
    outline: 3px solid rgba(227, 6, 19, 0.28);
    outline-offset: 3px;
}
