/* _content/LST.Admin/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-bn2oor4rg9] {
    height: 100%;
    font-family: var(--bs-font-sans-serif);
}

[b-bn2oor4rg9] .icon-back {
    -webkit-mask-image: url("images/back.svg");
    mask-image: url("images/back.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-color: var(--dxbl-btn-color);
}

[b-bn2oor4rg9] .content {
    overflow: auto;
}

[b-bn2oor4rg9] .back-button:hover .icon-back {
    background-color: var(--dxbl-btn-hover-color);
}

@media (max-width: 768px) {
    [b-bn2oor4rg9] .layout-sidebar {
        grid-area: header / header / header / header !important;
    }
}
/* _content/LST.Admin/Components/Layout/NavMenu.razor.rz.scp.css */
#sidebar[b-tul0e5oktc] {
    min-width: 15rem;
    max-width: 15rem;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.16);
    transition: transform 0.1s ease-out;
    height: 100%;
    max-height: 100%;
    /*background-image: linear-gradient(180deg, #107aa1 0%, var(--bs-black) 150%); */
    /*background-image: linear-gradient(180deg, var(--bs-gray-600) 0%, var(--bs-black) 150%); */

    /* background-image: linear-gradient(180deg, #d3cfcf 0%, #a49b9b 100%); */
    background-image: linear-gradient(180deg, #b0c4de 0%, #708090 100%);
}

.scrollable-container[b-tul0e5oktc] {
    height: 1000px; /* Adjust this height to fit your layout */
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    padding: 1rem; /* Optional padding for better layout */
    background-color: #f9f9f9; /* Optional styling */
}

.scrollable-treeview[b-tul0e5oktc] {
    max-height: 400px; /* Restrict the height of the TreeView */
    overflow-y: auto; /* Enable vertical scrolling inside the TreeView */
    padding: 0.5rem; /* Optional: Add spacing */
    border: 1px solid #ddd; /* Optional: Add a border for better visibility */
}


/*
@media (max-width: 768px) {
    #sidebar {
        min-width: inherit;
        max-width: inherit;
    }

        #sidebar.expanded {
            position: fixed;
            width: 100%;
            z-index: 3;
        }

            #sidebar.expanded ::deep .sidebar-header {
                border-bottom: 1px solid var(--bs-white);
            }

            #sidebar.expanded .menu-button {
                background-image: url("images/close.svg");
            }

        #sidebar:not(.expanded) ::deep .dxbl-gridlayout-root {
            gap: unset !important;
        }

    .logo {
        text-align: inherit;
    }

    ::deep .menu-button-container {
        display: block;
    }

    ::deep .layout-item {
        display: none;
    }

    ::deep .footer {
        display: none;
    }
} */
/* _content/LST.Admin/Components/Pages/Index.razor.rz.scp.css */
.welcome[b-1i6gz6folm] {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-1i6gz6folm] .welcome-gridlayout {
    margin: auto;
    width: auto;
    height: auto;
}

[b-1i6gz6folm] .welcome-gridlayout .dxbl-gridlayout-root {
    align-content: center;
    justify-content: center;
}

[b-1i6gz6folm] .welcome-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.welcome-title .welcome-title-header[b-1i6gz6folm] {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0em;
    text-align: center;
}

.welcome-title .welcome-title-content[b-1i6gz6folm] {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: center;
}

[b-1i6gz6folm] .welcome-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

[b-1i6gz6folm] .welcome-card {
    width: 26.25rem;
    height: 15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    border-radius: 1rem;
    color: var(--bs-link-color-rgb);
    gap: 1.5rem;
    text-decoration: none;
    position: relative;
}

    [b-1i6gz6folm] .welcome-card:hover {
        box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    }

    [b-1i6gz6folm] .welcome-card .welcome-card-img {
        width: 6.5rem;
        height: 6.5rem;
    }

    [b-1i6gz6folm] .welcome-card .welcome-card-text {
        font-size: 1.75rem;
        font-weight: 600;
        letter-spacing: 0em;
        text-align: center;
        text-decoration: unset;
    }

    [b-1i6gz6folm] .icon-fill {
        fill: var(--bs-primary);
    }

    [b-1i6gz6folm] .welcome-card .welcome-card-back {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bs-body-color);
        opacity: 0.05;
        border-radius: 1rem;
        z-index: -2;
    }
