/* ── Utility classes ────────────────────────────────────────────────────────── */

/* Right-align text in table cells and form labels */
.text-right {
    text-align: right;
}

/* Fill container height — used in full-height panels and dialog content areas */
.height-full {
    height: 100%;
}

/* ── Action column — fixed-width icon-button column in scroll tables ─────────
   Use on both the <MudTh> header and <MudTd> cell for the action (icon-button)
   column to guarantee a stable, non-expanding width.
   ──────────────────────────────────────────────────────────────────────────── */
.action-col-header,
.action-col-cell {
    width: 52px;
    min-width: 52px;
    max-width: 52px;
    text-align: right;
    white-space: nowrap;
}

.action-col-cell {
    padding-right: 4px;
}

.action-col-cell .mud-icon-button {
    margin-left: auto;
}
