/* /Components/AddressSearchOverlay.razor.rz.scp.css */
.search-overlay[b-s75n88xmhl] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateX(100%);
    visibility: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 100%;
    background-color: var(--md-sys-color-surface);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease-out, visibility 0s 0.25s;
}

.search-overlay--visible[b-s75n88xmhl] {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.25s ease-out, visibility 0s;
}

/* Header bar — Material 3 search bar */
.search-overlay-header[b-s75n88xmhl] {
    display: flex;
    align-items: center;
    padding: 5px 4px;
    gap: 4px;
    height: 72px;
    background-color: var(--md-sys-color-surface-container-high);
    border-radius: 28px 28px 0 0;
    flex-shrink: 0;
}

.search-overlay-back[b-s75n88xmhl],
.search-overlay-clear[b-s75n88xmhl] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--md-sys-color-on-surface-variant);
}

.search-overlay-back:hover[b-s75n88xmhl],
.search-overlay-clear:hover[b-s75n88xmhl] {
    background-color: color-mix(in srgb, var(--md-sys-color-on-surface) 8%, transparent);
}

.search-overlay-back:focus-visible[b-s75n88xmhl],
.search-overlay-clear:focus-visible[b-s75n88xmhl] {
    outline: 2px solid var(--md-sys-color-primary);
    outline-offset: -2px;
}

.search-overlay-input[b-s75n88xmhl] {
    flex: 1;
    border: none;
    background: transparent;

    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.5;
    color: var(--md-sys-color-on-surface);
    padding: 10px 0;
    outline: none;
    min-width: 0;
}

.search-overlay-input[b-s75n88xmhl]::placeholder {
    color: var(--md-sys-color-on-surface-variant);
}

.search-overlay-input:focus-visible[b-s75n88xmhl] {
    outline: none;
}

/* Divider below header */
.search-overlay-divider[b-s75n88xmhl] {
    height: 1px;
    background-color: var(--md-sys-color-outline);
    flex-shrink: 0;
}

/* Results list */
.search-overlay-results[b-s75n88xmhl] {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: var(--md-sys-color-surface);
}

/* Result item — Material 3 list item */
.search-result-item[b-s75n88xmhl] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 72px;
    padding: 8px 16px;
    gap: 16px;
    border: none;
    border-bottom: 1px solid var(--md-sys-color-outline);
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.search-result-item:last-child[b-s75n88xmhl] {
    border-bottom: none;
}

.search-result-item:hover[b-s75n88xmhl] {
    background-color: color-mix(in srgb, var(--md-sys-color-on-surface) 8%, transparent);
}

.search-result-item:focus-visible[b-s75n88xmhl] {
    outline: 2px solid var(--md-sys-color-primary);
    outline-offset: -2px;
}

/* Current location item */
.search-result-item--location[b-s75n88xmhl] {
    border-bottom: 1px solid var(--md-sys-color-outline);
}

.search-result-item--location:hover[b-s75n88xmhl] {
    background-color: color-mix(in srgb, var(--md-sys-color-on-surface) 8%, transparent);
}

/* Avatar / monogram circle */
.search-result-avatar[b-s75n88xmhl] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--md-sys-color-primary-container);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    font-size: 16px;
    font-weight: 500;
    color: var(--md-sys-color-on-surface);
}

/* Location avatar — radio button style */
.search-result-avatar--location[b-s75n88xmhl] {
    background-color: transparent;
    width: 24px;
    height: 24px;
    margin: 0 8px;
}

/* Text content */
.search-result-text[b-s75n88xmhl] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex: 1;
}

.search-result-name[b-s75n88xmhl] {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.5;
    color: var(--md-sys-color-on-surface);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-type[b-s75n88xmhl] {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 1.43;
    color: var(--md-sys-color-on-surface-variant);
}

.search-result-type--error[b-s75n88xmhl] {
    color: var(--md-sys-color-error);
}

/* Loading spinner */
.search-overlay-loading[b-s75n88xmhl] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    color: var(--md-sys-color-on-surface-variant);
    font-size: 14px;
}

/* Empty state */
.search-overlay-empty[b-s75n88xmhl] {
    text-align: center;
    padding: 24px 16px;
    color: var(--md-sys-color-on-surface-variant);
    font-size: 14px;
}
/* /Layout/BottomNavigation.razor.rz.scp.css */
.bottom-nav[b-vct8bmxe0q] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    z-index: 1000;
}

.bottom-nav[b-vct8bmxe0q]  .mud-tabs {
    background-color: #ffffff;
}

.bottom-nav[b-vct8bmxe0q]  .mud-tabs-toolbar {
    min-height: 56px;
}

.bottom-nav[b-vct8bmxe0q]  .mud-tab {
    min-width: 80px;
    padding: 6px 12px;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.app-container[b-nj90x9qqtb] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.main-content[b-nj90x9qqtb] {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    position: relative;
}

@media (min-width: 601px) {
    .app-container[b-nj90x9qqtb] {
        border-left: 1px solid #e0e0e0;
        border-right: 1px solid #e0e0e0;
    }
}
/* /Layout/OnboardingLayout.razor.rz.scp.css */
.onboarding-container[b-6ap52f8clu] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

[b-6ap52f8clu] .onboarding-page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 48px 24px 32px 24px;
}

[b-6ap52f8clu] .onboarding-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
}

[b-6ap52f8clu] .onboarding-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
}

[b-6ap52f8clu] .feature-list {
    text-align: left;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 601px) {
    .onboarding-container[b-6ap52f8clu] {
        border-left: 1px solid #e0e0e0;
        border-right: 1px solid #e0e0e0;
    }
}
