#purim-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

#purim-popup-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#purim-popup-content {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 80vw;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    width: 50vw;
    height: 80vh;
}

#purim-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 24px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111 !important;
    font-weight: 600;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

#purim-popup-close:hover,
#purim-popup-close:focus-visible {
    background: rgba(0, 0, 0, 0.15);
    color: #000 !important;
    border-color: rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    #purim-popup-content {
        width: 95vw;
        height: 95vh;
    }
}