/* Compact app-bar clock (mw-abc-*) rendered by MwAppBarClock when a page requests it via AppBarState.
   Lives inside the MudAppBar toolbar, so colour is inherited from the bar and the time uses JetBrains
   Mono tabular numerals to sit still while ticking. */

.mw-abc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 4px;
}

.mw-abc-time {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    color: inherit;
    font-variant-numeric: tabular-nums;
}

.mw-abc-sim {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 2px 7px;
    border-radius: 999px;
    color: inherit;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.28);
}
