.sbl-no-scroll {
    overflow: hidden !important;
    position: fixed !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    overscroll-behavior: contain !important;
    touch-action: none !important;
    top: 0 !important;
    left: 0 !important;
}

#sbl-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    background: #000;
    z-index: 10000;
    touch-action: none;
    overflow: hidden;
    overscroll-behavior: contain;
}

#sbl-popup-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-sizing: border-box;
    overflow: hidden;
    overscroll-behavior: contain;
}

@supports not (height: 100dvh) {
    #sbl-popup-overlay,
    #sbl-popup-content {
        height: 100vh;
        min-height: 100vh;
    }
}

#sbl-popup-content h2 {
    font-size: 2.2em;
    word-break: break-word;
    white-space: normal;
    margin-bottom: 24px;
    margin-top: 0;
}

#sbl-popup-content p {
    font-size: 1.1em;
    margin-bottom: 24px;
}

#sbl-accept-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 12px 28px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 3px;
}

#sbl-loading-spinner {
    display: none;
    margin: 20px auto 0 auto;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: sbl-spin 1s linear infinite;
}
@keyframes sbl-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 