/* Full screen overlay */
.sgpb-popup-dialog-main-div-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
    z-index: 999910;
    background: rgba(0,0,0,0.5);
}

/* Popup box */
.sgpb-popup-dialog-main-div-theme-wrapper-2 {
    position: relative;
    width: 90%;
    max-width: 480px;
    max-height: 80vh;
    background-size: cover;
    background-position: center center;
    border: 1px solid #000;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Close button above top-right */
.popup-close-btn {
    position: absolute;
    top: 0px;   /* above popup */
    right: 0px;  /* slightly inside from right edge */
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1010;
}

/* Inner content */
.sgpb-content {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sgpb-popup-dialog-main-div-theme-wrapper-2 {
        max-width: 95%;
        max-height: 70vh;
    }
    .popup-close-btn {
        width: 25px;
        height: 25px;
        top: 0px;
        right: 0px;
    }
    .sgpb-content {
        width: 100%;
        height: 100%;
        min-height: 340px;
    }
    .director-image img {
        max-width: 300px!important;
    } 
}
