#pwa-offline-screen {
    align-items: center;
    background-color: #03173d;
    color: #fff;
    display: none;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    padding: 1.5rem;
    position: fixed;
    text-align: center;
    z-index: 100000;
}

#pwa-offline-screen.is-visible {
    display: flex;
}

#pwa-offline-screen .pwa-offline-icon {
    color: rgba(255, 255, 255, 0.9);
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
}

#pwa-offline-screen h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

#pwa-offline-screen p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 22rem;
}

#pwa-offline-screen .pwa-offline-retry {
    background-color: #fff;
    border: none;
    border-radius: 0.25rem;
    color: #03173d;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    min-width: 10rem;
    padding: 0.625rem 1.5rem;
    transition: opacity 0.15s ease;
}

#pwa-offline-screen .pwa-offline-retry:hover:not(:disabled) {
    opacity: 0.9;
}

#pwa-offline-screen .pwa-offline-retry:disabled {
    cursor: wait;
    opacity: 0.7;
}

#pwa-offline-screen .pwa-offline-retry .fa-spinner {
    margin-right: 0.35rem;
}
