.apply-modal {
    position: fixed;
    inset: 0; /* top:0; left:0; right:0; bottom:0; */
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 999999;
}

.apply-modal.show {
    display: block; /* block giúp full-screen ổn định, không cần flex */
}

.apply-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.apply-modal-content {
    position: absolute;
    inset: 0; /* chiếm toàn bộ màn hình */
    background: black;
    width: 100%;
    height: 100%;
    overflow: hidden; /* không scroll */
    /*padding: 20px;*/
    z-index: 2;
}

/* Nút đóng */
.apply-modal-close {
    position: relative;
    top: 45px;
    right: 0;
    font-size: 36px;
    left: 96%;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}
