/* Static chrome for the Excel-like workbook preview tables (#166).
   Lives in wwwroot (not scoped CSS) because EPPlus emits the markup with
   raw class names — Blazor's scoped attribute selector can't reach
   classes on dynamically-generated <th> elements.

   Uses MudBlazor design tokens so the chrome adapts to the active theme
   (brand swap / future dark mode). EPPlus's per-workbook inline <style>
   block continues to carry the per-cell colors (epp-s1, epp-dxf1, etc.).

   The FluentUI overflow-tab overrides that used to live here were dropped
   post-#345 — MudTabs handles overflow without spawning a `+N` badge. */

.epplus-colhdr th,
.epplus-rowhdr {
    background: var(--mud-palette-background-grey);
    color: var(--mud-palette-text-primary);
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--mud-palette-lines-default);
    padding: 2px 6px;
    font-family: var(--mud-typography-default-family, "Segoe UI", Arial, sans-serif);
    font-size: 11px;
}

.epplus-corner {
    background: var(--mud-palette-action-default-hover);
    border: 1px solid var(--mud-palette-lines-default);
}
