/* Scrolls horizontally within its own box on a narrow viewport instead of forcing the whole page to overflow — see Table.tsx's comment. */ .ui-table-scroll { overflow-x: auto; } .ui-table { width: 100%; border-collapse: collapse; } .ui-table th { text-align: left; font-weight: 600; color: var(--muted); padding: 0.5em 0.75em; border-bottom: 1px solid var(--border); } .ui-table td { padding: 0.5em 0.75em; border-bottom: 1px solid var(--border); } .ui-table tr:last-child td { border-bottom: none; }