﻿/* Android Chrome sizes a percentage height on the root element against the viewport it
   would have with the URL bar fully retracted, not the one actually visible: a fresh page
   load (bar showing) gets a taller box than the screen can show, and nothing further down
   the flex chain (min-h-0 regions in NsPanel, NsTable) ever needs to scroll internally —
   the browser scrolls the PAGE instead, dragging a pinned footer or a table's pager below
   the fold until the user happens to scroll once and the bar retracts. dvh tracks the
   viewport that is actually on screen; the vh line before it is the fallback for browsers
   that do not parse dvh, which drop the whole declaration and keep the earlier one. */
html, body {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
}
