/**
 * Generic modal
 */

.modal {
    display: none;
    position: fixed;
    inset: 0;

    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, .80);
    z-index: 9999;
}

.modal.open {
    display: flex;
}

.modal-content {
    position: relative;
}

/* ===================================================== */
/* Confirmation modal */
/* ===================================================== */

.confirm-modal {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    width: min(450px, 90vw);
    box-shadow: 0 12px 35px rgba(0,0,0,.30);
}

.confirm-modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}
