.emp-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}

.emp-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    min-width: 500px;
    position: relative;
}

.emp-popup-close {
    position: absolute;
    top: -2px; 
    right: 8px;
    font-size: 22px;
    cursor: pointer;
}
