﻿.confirm-modal {
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .confirm-modal.hidden {
        display: none;
    }

.confirm-box {
    width: min(520px, 92vw);
    border-radius: 24px;
    padding: 24px;
    background: #0f172a;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.confirm-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.confirm-content {
    color: #cbd5e1;
    line-height: 1.7;
}

.confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.btn-confirm {
    border: none;
    border-radius: 14px;
    padding: 12px 18px;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.btn-cancel {
    border: none;
    border-radius: 14px;
    padding: 12px 18px;
    background: rgba(255,255,255,0.08);
    color: white;
    font-weight: 700;
    cursor: pointer;
}
