/* _content/Notes/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-1f84end3jy] {
    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-1f84end3jy] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

#expandingHeader[b-1f84end3jy] {
    position: sticky;
    top: 0;
    height: 50px;
    background-color: var(--mud-palette-drawer-background);
    color: var(--mud-palette-drawer-text);
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: height 0.1s ease;
}

    #expandingHeader.expanded[b-1f84end3jy] {
    }

    #expandingHeader #exandHeader_title[b-1f84end3jy] {
        flex-grow: 1;
        text-align: start;
        transition: transform 0.3s cubic-bezier(.4,0,.2,1), font-size 0.3s cubic-bezier(.4,0,.2,1);
        transform: translate(0, 0) scale(1);
        font-size: 1.5rem;
    }

    #expandingHeader.expanded #exandHeader_title[b-1f84end3jy] {
        transform: translate(33vw, 0) scale(1.3);
        text-align: start; 
        font-size: 2rem;
    }

    #expandingHeader #exandHeader_drawer[b-1f84end3jy] {
        height: fit-content;
        align-items: start;
    }

    #expandingHeader.expanded #exandHeader_drawer[b-1f84end3jy] {
        align-items: start;
        align-self: end;
    }

    #expandingHeader.expanded #exandHeader_utils[b-1f84end3jy] {
        align-items: start;
        align-self: end;
    }
/* _content/Notes/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-kad9gxx4ky] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-kad9gxx4ky] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-kad9gxx4ky] {
    font-size: 1.1rem;
}

.oi[b-kad9gxx4ky] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-kad9gxx4ky] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-kad9gxx4ky] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-kad9gxx4ky] {
        padding-bottom: 1rem;
    }

    .nav-item[b-kad9gxx4ky]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-kad9gxx4ky]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-kad9gxx4ky]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-kad9gxx4ky] {
        display: none;
    }

    .collapse[b-kad9gxx4ky] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-kad9gxx4ky] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
