/* #staff-popup-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 10000; display: none; }
.staff-popup-content { background: #fff; max-width: 900px; margin: 5% auto; padding: 20px; position: relative; overflow-y: auto; max-height: 90vh; border-radius: 8px; }
.close-staff-popup { position: absolute; right: 15px; top: 10px; font-size: 24px; cursor: pointer; }
   */

   #staff-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 99.9vw;
    height: auto;
    min-height:100vh;
    background-color: rgba(000, 000, 000, .5); /* Dark overlay */
    z-index: 9999;
    display: none;
    /* overflow-y: auto; */
}

.staff-popup-content {
    max-width: 960px;
    margin: 5% auto;
    background: #ffffff00;
    padding: 30px;
    border-radius: 0px;
    position: relative;
}
.staff-popup-content.row {    border: solid 3px #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #ffffff60;
} 

.close-staff-popup {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 45px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10001;
}

/* Optional: Disable background scrolling when modal is open */
body.staff-popup-open {
    overflow: hidden;
}
