/* Inactive row: muted text color — specificity must beat MudBlazor's
   .mud-table-root .mud-table-body .mud-table-cell (0-3-0) */
.mud-table-root .mud-table-body .row-inativo td {
    color: var(--mud-palette-text-disabled);
}

/* Floating label for SSR mode: MudTextField JS adds mud-shrink;
   :has(input:not(:placeholder-shown)) achieves the same via CSS when
   placeholder=" " is present (set by plataformaDocumentosFiscais.js on page load). */
.mud-input:has(input:not(:placeholder-shown)) ~ label.mud-input-label.mud-input-label-inputcontrol.mud-input-label-outlined,
.mud-input:has(textarea:not(:placeholder-shown)) ~ label.mud-input-label.mud-input-label-inputcontrol.mud-input-label-outlined {
    transform: translate(14px, -6px) scale(0.75);
    max-width: calc(100% - 14px);
    color: var(--mud-palette-text-secondary);
    pointer-events: auto;
}
