.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.popup-overlay.active {
    display: flex;
    opacity: 1;
}
.popup-overlay.scrollable {
    overflow-y: auto;
}
.container-popup {
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90%;
}
.popup-overlay.active .container-popup.zoom-in {
    transform: scale(1);
    opacity: 1;
}
.popup-overlay.closing .container-popup {
    transform: scale(0);
    opacity: 0;
}
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup-close {
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}
/* Cursor pointer untuk semua elemen HTML dengan onclick handler */
[onclick],  a{
    cursor: pointer;
}