/* =========================================================================
   Nexus — P6 mobile polish (Samsung A55 / 329px).
   Panel layouts, EDIT/DEL visibility, and 36px targets live in
   digital.css / hardware.css / wardrobe.css / shell.css.
   This file only covers cross-cutting overflow, scroll, and tap fixes.
   ========================================================================= */

@media (max-width: 720px) {
  .nx-topbar,
  .nx-brand,
  .nx-clock,
  .nx-viewswitch,
  .nx-pane-header,
  .nx-pane-title {
    min-width: 0;
  }

  .nx-viewarea {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* Keep last-row EDIT/DEL above the fixed Auditor button. */
    padding-bottom: 4.5rem;
  }

  .nx-nav-btn,
  .nx-add-btn,
  .nx-btn,
  .nx-login-submit {
    min-height: 36px;
    touch-action: manipulation;
  }
}

@media (max-width: 480px) {
  .nx-shell {
    height: 100dvh;
  }

  .nx-login-card {
    width: min(420px, 90vw);
    max-width: 90vw;
    max-height: 92vh;
    overflow: auto;
  }
}
