detail
USR369's 3 tablet screenshots (after the width fix) showed correct layout/tabs/no overlap, but text looked small relative to the much wider container. Root cause: bumping body{font-size:15px} in the tablet media query had almost no visible effect because nearly every text element on the page (field labels, hints, input values, totals, breakdown rows, notes, etc.) sets its OWN explicit pixel font-size rather than inheriting from body -- so the body-level bump was overridden everywhere it mattered. Added explicit tablet-breakpoint overrides for ~20 selectors covering field labels/hints, numeric inputs, the main total/breakdown readout, bake-info stats, pan-card fields, notes, and footer -- scaled each up by roughly 15-20% rather than a single blanket multiplier, to keep proportions (headers vs. body text vs. fine print) sensible rather than uniformly enlarging everything by the same fixed amount. Left the small set of inline-styled buttons (Print, Save, Add, etc.) untouched since inline styles can't be overridden without !important and button label size wasn't the reported problem.