/* Shared MudBlazor helper utilities for small, reusable helpers
   Use these only for cross-component styling gaps MudBlazor utilities do not cover.
*/

/* Monospace font helper (opt-in) */
.mono-font {
    font-family: 'Cascadia Mono', monospace;
}

/* Muted/utility text */
.muted-text {
    opacity: 0.75;
}

/* Fixed-height content area for tabbed config dialogs. The dialog shell keeps
   its title/actions stable while this area owns overflow. */
.catherder-config-dialog-content {
    height: 620px;
    max-height: calc(100dvh - 180px);
    overflow-y: auto;
}
