/* CloudCLI Mobile Optimization - Custom CSS Override */
/* Hides bottom mobile nav bar and compacts UI for more screen space on phones */

@media (max-width: 767px) {
  /* Hide the floating bottom mobile nav (Chat/Shell/Files/Git tabs) */
  .nav-glass.mobile-nav-float {
    display: none !important;
  }

  /* Remove the bottom padding reserved for the nav bar */
  .pb-mobile-nav {
    padding-bottom: 0 !important;
  }

  /* Also remove safe-area padding that was for the nav */
  [class*="pb-safe-area-inset-bottom"] {
    padding-bottom: 0 !important;
  }

  /* Remove the nav container's transform/positioning space */
  div:has(> .nav-glass.mobile-nav-float) {
    display: none !important;
  }
}

/* Shell fullscreen mode: hide parent header + FAB when terminal is focused */
body.shell-fullscreen .pwa-header-safe {
  display: none !important;
}
body.shell-fullscreen #tmux-fab {
  display: none !important;
}

/* PWA standalone mode - extra optimizations */
@media (display-mode: standalone) and (max-width: 767px) {
  body {
    padding-top: env(safe-area-inset-top) !important;
  }
}
