/* Shared MudBlazor helper utilities for small, reusable helpers
   Use these for small cross-component styling needs (mono font, fill/scroll helpers, layout strips).
*/

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

/* Independent scrolling helper for inner panes */
.content-scroll {
    min-height: 0; /* allow flex children to shrink */
    overflow: auto;
}

/* Small layout strip used for compact status/toolbars */
.layout-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    padding: 4px 12px;
    flex-shrink: 0;
}

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

