/* Sticky table header — freeze header row at top of scroll container. */
.sticky-th {
    position: sticky;
    top: 0;
    background: var(--mud-palette-surface);
    z-index: 1;
}
