/* V35: desktop date-range layout stability.
   Prevent a desktop browser/date-picker reflow or high browser zoom from switching
   the operations portal into the mobile shell while changing From/To dates. */
@media (pointer:fine) and (min-device-width:900px){
  body.aakash-desktop-layout-lock .app-shell{
    display:grid !important;
    grid-template-columns:250px minmax(0,1fr) !important;
  }
  body.aakash-desktop-layout-lock .app-shell>aside{
    display:flex !important;
    position:sticky !important;
    top:0 !important;
    height:100vh !important;
  }
  body.aakash-desktop-layout-lock .app-shell>main{
    min-width:0 !important;
    padding:18px 22px 32px !important;
  }
  body.aakash-desktop-layout-lock .mobile-header,
  body.aakash-desktop-layout-lock .mobile-nav{
    display:none !important;
  }
}
