/* _content/MyToyotaQuoting/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-obxr09thhw] {
    position: relative;
    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: var(--body-bg);
    color: var(--text-primary);
}

main[b-obxr09thhw] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-left: 280px;
    transition: margin-left 0.2s cubic-bezier(0.14, 0.4, 0.09, 0.99);
    position: relative;
}

.nav-container[b-obxr09thhw] {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background-color: var(--sidebar-bg);
    color: var(--text-primary);
    border-right: 1px solid var(--border-color);
    z-index: 100;
    transition: width 0.2s cubic-bezier(0.14, 0.4, 0.09, 0.99), transform 0.2s cubic-bezier(0.14, 0.4, 0.09, 0.99);
    box-shadow: 1px 0 8px var(--shadow-color);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s cubic-bezier(0.14, 0.4, 0.09, 0.99);
}

    /* Collapsed states */
    .nav-container.collapsed[b-obxr09thhw] {
        width: 72px;
    }

.page:has(.nav-container.collapsed) main[b-obxr09thhw] {
    margin-left: 72px;
}

.top-row[b-obxr09thhw] {
    background-color: var(--content-bg);
    border-bottom: 1px solid var(--border-color);
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    justify-content: flex-end;
    gap: 1rem;
    position: relative;
    z-index: 99;
}




.content[b-obxr09thhw] {
    flex: 1;
    padding: 0rem;
    overflow-y: auto;
    position: relative;
    background-color: var(--body-bg);
    transition: padding 0.2s cubic-bezier(0.14, 0.4, 0.09, 0.99);
}

    .content[b-obxr09thhw]::-webkit-scrollbar {
        width: 8px;
    }

    .content[b-obxr09thhw]::-webkit-scrollbar-track {
        background: transparent;
    }

    .content[b-obxr09thhw]::-webkit-scrollbar-thumb {
        background: var(--scroll-thumb);
        border-radius: 4px;
    }

        .content[b-obxr09thhw]::-webkit-scrollbar-thumb:hover {
            background: var(--scroll-thumb-hover);
        }

/* Blazor Error UI - Meta Style */
#blazor-error-ui[b-obxr09thhw] {
    background-color: var(--content-bg);
    color: var(--text-primary);
    bottom: 0;
    box-shadow: 0 -2px 8px var(--shadow-color);
    display: none;
    left: 0;
    padding: 1rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-top: 2px solid var(--primary-color);
    transition: all 0.2s cubic-bezier(0.14, 0.4, 0.09, 0.99);
}

.theme-dark #blazor-error-ui[b-obxr09thhw] {
    background-color: var(--sidebar-bg);
}

#blazor-error-ui .dismiss[b-obxr09thhw] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s cubic-bezier(0.14, 0.4, 0.09, 0.99);
}

    #blazor-error-ui .dismiss:hover[b-obxr09thhw] {
        background-color: var(--nav-hover);
        color: var(--primary-color);
    }




#blazor-error-ui[b-obxr09thhw] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-obxr09thhw] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
