/* Mobile admin viewport: keep the shell and main surface inside the real viewport. */
@media (max-width: 720px) {
  .app-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}
