/* Shared by the statistik sub-pages that rank 98 kommuner in a table (15.08.2026,
   docs/MAKEOVER-STATISTIK.md's sub-page pass). Design tokens come from gv.css.

   Measured at 390 px on 15.08.2026: /statistik/indkomst was a 628 px table inside a 350 px column
   with overflow visible, so "Krævet husstandsindkomst" - the column the page exists to show, and
   the one Googleren arrives for - simply ran off the right edge with nothing to scroll. markedet
   had it on both tables and rekorder on 3 of 17. The kommune and town pages were measured too and
   do NOT overflow, which is why this is a page-scoped sheet and not a change to gv.css: a table
   rule in the base layer reaches all 56 pages to fix three ([[hoisting-css-is-not-refactoring]]).

   Overflow that nothing scrolls reads as ABSENT rather than as broken - no status code, no console
   error, and a screenshot of the visible part looks like a finished page. */
.tabelrul { display:block; overflow-x:auto; max-width:100%; }
/* Keep the header row readable while it scrolls: without this the cells collapse to two words per
   line the moment the table is allowed to size to its content. */
.tabelrul th, .tabelrul td { white-space:nowrap; }
