.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 36px 32px;
    border-top: 3px solid #1a56db;
}

.modal-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #1a56db;
    margin: 0 0 12px;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
}

.modal-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 28px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cancel {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    cursor: pointer;
    letter-spacing: 0.04em;
}

.btn-cancel:hover {
    background: #f5f5f5;
}

.btn-confirm {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    background: #1a56db;
    color: #fff;
    border: none;
    cursor: pointer;
    letter-spacing: 0.04em;
}

.btn-confirm:hover {
    background: #1648c0;
}