/* When the shared confirm modal opens on top of another modal
 * (e.g. the case-property edit modal triggering the "Switch
 * mode" confirm), Bootstrap's default modal-content shadow gets
 * lost: white card on a blurred-white parent reads as a fluffy
 * floating panel with no clear edge. Strengthen the shadow and
 * pin a 1px border at full opacity so the confirm modal stands
 * out as the active surface. Scoped to `#shared-confirm-modal`
 * so it only affects this stacked context — solo modals keep
 * Tabler's default chrome. */
#shared-confirm-modal .modal-content {
  border: 1px solid var(--tblr-border-color);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.35);
}
