﻿#slow-notice {
    width: 300px;
    position: fixed;
    top: 0;
    left: 50%;
    margin-left: -160px;
    background-color: #ff9800;
    text-align: center;
    z-index: 10050;
    font-family: sans-serif;
    font-size: 13px;
    color: #fff;
    padding: 10px 12px;
    border: 0;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#slow-notice.is-online-recovery {
    background-color: #2e7d32;
}

    #slow-notice a, #slow-notice .dismiss {
        color: #fff;
        text-decoration: underline;
        cursor: pointer;
    }

    #slow-notice .dismiss-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        padding-top: 10px;
        font-size: 13px;
    }

    #slow-notice .pwa-offline-retry {
        appearance: none;
        border: 1px solid #fff;
        background: transparent;
        color: #fff;
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 4px;
        cursor: pointer;
    }

    #slow-notice .pwa-offline-retry:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
