/* /Components/AllChecksGrid.razor.rz.scp.css */
/* MudTable's Style/Class parameters land on its outer wrapper div, not the <table> element
   itself (confirmed against the actual MudBlazor v9.7.0 source) — there's no public
   parameter that reaches the <table>. ::deep is Blazor CSS isolation's mechanism for
   reaching past a child component's scoping boundary, and is itself scoped to only this
   component's own render tree, so this can safely target MudTable's generic
   "mud-table-root" class without leaking into other pages' tables. table-layout:fixed is
   what actually stops the table growing wider than its box on long rule/line-item text —
   the real fix for the horizontal scrollbar, not just a side effect of the column widths. */
[b-6oq5p2izdp] .mud-table-root {
    table-layout: fixed;
    width: 100%;
}
/* /Pages/Dashboard.razor.rz.scp.css */
/* Same fix as AllChecksGrid.razor.css — MudTable's Style/Class parameters land on its
   outer wrapper div, not the <table> itself, so the per-column widths set inline on each
   MudTh only take effect once table-layout is fixed rather than content-based auto-layout. */
[b-y062v8nsti] .mud-table-root {
    table-layout: fixed;
    width: 100%;
}
/* /Pages/Home.razor.rz.scp.css */
/* Same fix as Dashboard.razor.css/AllChecksGrid.razor.css — MudTable's Style/Class parameters
   land on its outer wrapper div, not the <table> itself, so the per-column widths set inline
   on each MudTh only take effect once table-layout is fixed rather than content-based auto-layout. */
[b-xhtr3cigev] .mud-table-root {
    table-layout: fixed;
    width: 100%;
}
