#saf-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.8); */
    backdrop-filter: blur(5px);
    z-index: 9998;
    display: none;
    transition: backdrop-filter 0.3s ease;
}

#saf-blur-overlay.active {
    display: block;
}

#saf-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

#saf-popup.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}