/* Modal fixes for proper z-index and interaction */
.modal-backdrop {
  z-index: 1040 !important;
}

.modal {
  z-index: 1050 !important;
}

.modal.show {
  display: flex !important;
  z-index: 1050 !important;
}

.modal-dialog {
  pointer-events: auto !important;
}

.modal-content {
  pointer-events: auto !important;
}

/* Ensure overlay doesn't freeze interaction */
body.modal-open {
  overflow: hidden;
}

.modal-body {
  max-height: 70vh;
  overflow-y: auto;
}
