/* Forsaj desktop: browser Zoom 100% — vertical page scroll must remain
   available on 1366x768 notebooks AND on 4K (3840x2160) monitors.
   v20260828-fix2:
   - Removed the old exact `(width:1366px) and (height:768px)` query:
     it essentially never matches in a real browser, because the
     browser chrome (tabs/address bar) and OS taskbar always reduce the
     usable viewport below the screen's physical 768px height.
   - Removed the old 4K-only `(min-width:3000px)` query: on many 4K
     monitors Windows/macOS display scaling (125%-150% is the common
     default) shrinks the effective CSS viewport width below 3000px, so
     that query silently failed to fire.
   - Replaced both with one forgiving range that reliably covers real
     1366x768 and real 4K viewports at any OS scaling level. */
@media (min-width:1000px) and (min-height:560px){
  html:has(#pageFlash.active), body:has(#pageFlash.active){
    overflow-x:hidden !important;
    overflow-y:auto !important;
    height:auto !important;
    min-height:100vh !important;
    max-height:none !important;
  }
  #pageFlash.active{
    height:auto !important;
    min-height:calc(100vh + 2px) !important;
    max-height:none !important;
    overflow:visible !important;
  }
  #pageFlash.active .fj-wrap{
    height:auto !important;
    min-height:calc(100vh + 2px) !important;
    max-height:none !important;
    overflow:visible !important;
    box-sizing:border-box !important;
  }
}
