/* Project overrides loaded after theme CSS.
   Fix: site header uses a very high z-index; ensure Bootstrap modals render above it. */

/* Keep backdrop above fixed header */
.modal-backdrop {
  z-index: 1000000 !important;
}

/* Keep modal above backdrop and header */
.modal {
  z-index: 1000001 !important;
}

/* When a modal is open, don't let the header overlay it */
body.modal-open .header {
  z-index: 1 !important;
}

