
  /* Force submission modal to be above everything */
  [role="dialog"][aria-modal="true"] {
    z-index: 10100 !important;
  }

  [role="dialog"][aria-modal="true"] ~ div[class*="backdrop"],
  [role="dialog"][aria-modal="true"] + div,
  div[class*="backdrop"][class*="fixed"] {
    z-index: 10099 !important;
  }

  /* Specifically target the modal wrapper */
  body > div[id*="modal"],
  body > div[class*="modal"] {
    z-index: 10100 !important;
  }

  /* Prevent Flowbite Modal from scrolling past viewport — keeps footer visible */
  [role="dialog"][aria-modal="true"] > div > div {
    max-height: 95vh !important;
    display: flex !important;
    flex-direction: column !important;
  }
  [role="dialog"][aria-modal="true"] > div > div > div:not(:first-child):not(:last-child) {
    overflow-y: auto !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
  }
