/* modal.css */

/* Aumentar opacidad del fondo del modal */
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Forzar el modal a estar por encima de todo */
.modal.show {
  z-index: 999999999999 !important;
}


/* Evitar scroll mientras el modal está abierto */
body.modal-open {
  overflow: hidden;
}
