﻿/* Background overlay */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

/* Popup container inspired by MudBlazor dialog */
#service-worker-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 90%;
    max-width: 400px;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-align: center;
}

    /* Header styling */
    #service-worker-popup h3 {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 16px;
    }

    /* Button styling similar to MudBlazor's primary button */
    #service-worker-popup button {
        background-color: #6200ee;
        color: white;
        padding: 8px 16px;
        border: none;
        border-radius: 4px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        margin-top: 16px;
    }

        #service-worker-popup button:hover {
            background-color: #3700b3;
        }
