.jiemvac-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.jiemvac-modal {
    background: #ffffff;
    max-width: 480px;
    width: 100%;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    box-sizing: border-box;
    animation: jiemvac-fade-in 0.25s ease-out;
}

@keyframes jiemvac-fade-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.jiemvac-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #222;
}

.jiemvac-message {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
}

.jiemvac-resume {
    background: #f5f5f5;
    border-radius: 6px;
    padding: 12px;
    font-size: 15px;
    color: #222;
    margin-bottom: 20px;
}

.jiemvac-accept-btn {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.jiemvac-accept-btn:hover {
    opacity: 0.85;
}

@media (max-width: 480px) {
    .jiemvac-modal {
        padding: 22px 18px;
    }
    .jiemvac-title {
        font-size: 19px;
    }
}
