/*
 * iOS Safari paste-modal compositor hotfix.
 *
 * A blurred fixed backdrop can retain a dark ghost of the bottom dock after
 * the software keyboard resizes the visual viewport. Keep the dim layer for
 * the paste modal, but disable backdrop blur only for that modal.
 */
.modal-overlay:has(.paste-textarea) {
  background: rgba(15, 23, 42, 0.34);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
