#ce-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex; /* ← always flex */
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 999999;
}

#ce-popup-box {
    position: relative;
    background: #ffffff;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    box-sizing: border-box;
}

#ce-popup-close {
position: absolute;
    top: 0px;
    right: 0px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
    font-size: 100px;
}

#ce-popup-content {
    max-height: 70vh;
    overflow-y: auto;
}
