/*
 * Dialog layout compatibility layer.
 *
 * SweetAlert2 injects its bundled stylesheet at runtime. With Trusted Types
 * enabled, child-combinator selectors may be normalized before reaching the
 * CSS parser. Keep the positioning contract in a static, CSP-safe asset so
 * every shared confirmation, prompt and feedback dialog remains centered.
 */
div:where(.swal2-container).swal2-center > .swal2-popup {
  grid-column: 2;
  grid-row: 2;
  place-self: center;
}
