/* /Layout/MainLayout.razor.rz.scp.css */
/* Flex container ensuring the tab splits correctly */
.mobile-tab-container[b-g99638wy9i] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 144px); /* Subtracts height of top AppBar and custom BottomNav */
    overflow: hidden;
}

/* Keeps search elements pinned rigidly to the top view boundary */
.fixed-search-form[b-g99638wy9i] {
    flex-shrink: 0;
    background-color: transparent;
    z-index: 10;
    padding-bottom: 4px;
}

/* Constrains the lower list and lets it scroll internally */
.scrollable-list-viewport[b-g99638wy9i] {
    flex-grow: 1;
    overflow-y: auto;
    padding-bottom: 24px;
    /* Smooth momentum scrolling for mobile devices */
    -webkit-overflow-scrolling: touch;
}

.text-muted[b-g99638wy9i] {
    color: var(--mud-palette-text-secondary);
}

/* Wrapper that swaps between the chip view and the live autocomplete */
.chip-autocomplete-wrapper[b-g99638wy9i] {
    position: relative;
}

/* Chip view: stands in for the outlined field once a value is selected */
.chip-field-shell[b-g99638wy9i] {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 56px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.23);
    border-radius: 4px;
    padding: 8px 14px;
    background-color: #fff;
    cursor: text;
    position: relative;
}

    .chip-field-shell:hover[b-g99638wy9i] {
        border-color: rgba(0, 0, 0, 0.87);
    }

.chip-field-label[b-g99638wy9i] {
    position: absolute;
    top: -9px;
    left: 10px;
    background-color: #fff;
    padding: 0 4px;
    font-size: 12px;
    line-height: 1;
    color: var(--mud-palette-text-secondary);
}

.chip-field-icon[b-g99638wy9i] {
    color: rgba(0, 0, 0, 0.54);
    flex-shrink: 0;
}

/* Hide MudBlazor default header tab buttons to use custom bottom bar control */
[b-g99638wy9i] .mud-tabs-toolbar,
[b-g99638wy9i] .mud-tabs-tabbar,
[b-g99638wy9i] .mud-tabs-tabbar-inner {
    display: none !important;
    height: 0px !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
/* /Layout/NavMenu.razor.rz.scp.css */
