/* iOS-Safe Modal Backdrop */
.modal-backdrop-ios-safe {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  
  /* Doppelte Höhen-Deklaration für iOS */
  height: 100vh;
  height: 100dvh; /* Dynamic Viewport Height - ignoriert URL-Leiste */
  min-height: 100vh;
  min-height: 100dvh;
  
  /* iOS Touch-Handling */
  touch-action: none; /* Verhindert Touch-Scroll auf dem Backdrop */
  overscroll-behavior: contain; /* Stoppt iOS-Bounce */
  -webkit-overflow-scrolling: touch; /* Smooth Scrolling */
  
  /* Ensure it covers everything */
  width: 100%;
  width: 100dvw;

  /* Prevent margin-top displacement from parent space-y utilities */
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
