/* Tamaños personalizados para modales de Bootbox */

.bootbox-sm .modal-dialog {
    max-width: 400px;
    width: 90%;
}

.bootbox-md .modal-dialog {
    max-width: 600px;
    width: 95%;
}

.bootbox-lg .modal-dialog {
    max-width: 900px;
    width: 95%;
}

.bootbox-xl .modal-dialog {
    max-width: 1140px;
    width: 95%;
}

.bootbox-xxl .modal-dialog {
    max-width: 1400px;
    width: 95%;
}

/* Opcional: centrar siempre verticalmente */
.bootbox-sm .modal-dialog,
.bootbox-md .modal-dialog,
.bootbox-lg .modal-dialog,
.bootbox-xl .modal-dialog,
.bootbox-xxl .modal-dialog {
    margin: 1.75rem auto;
}