/* Reusable segmented "pill" toggle (SegmentedToggle.razor): a grey capsule with one
   highlighted segment. Ported from the original ReportTemplate .rt-seg pattern.
   Linked globally from index.template.html because this app does not bundle scoped CSS. */
.seg-toggle {
    display: flex;
    gap: 4px;
    background: var(--mud-palette-background-gray);
    border-radius: 6px;
    padding: 4px;
}

.seg-toggle-btn {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 11.5px;
    color: var(--mud-palette-text-secondary);
    transition: all .15s;
    user-select: none;
}

.seg-toggle.stretch .seg-toggle-btn {
    flex: 1 1 0;
}

.seg-toggle-btn.seg-toggle-on {
    background: var(--mud-palette-surface);
    color: var(--mud-palette-text-primary);
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0,0,0,.14);
}
