/* Blur everything (applied via JS fallback) */
body.wsp-blurred *:not(.wsp-suspension-overlay):not(.wsp-suspension-overlay *) {
    filter: blur(8px) !important;
    pointer-events: none;
}

/* Overlay covers entire screen */
.wsp-suspension-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    background-color: rgba(255, 255, 255, 0.4);

    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 20px;
}

/* Content box */
.wsp-suspension-content {
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    max-width: 600px;
    width: 100%;
    text-align: left;
    font-family: Arial, sans-serif;
}

.wsp-suspension-content h1 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: bold;
    line-height: 1em;
}

.wsp-suspension-content p {
    font-size: 15px;
    line-height: 1.3em;
}

.wsp-suspension-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0 20px;
}

.wsp-suspension-content ul li {
    margin-bottom: 8px;
}