/* _content/Portal/Shared/MainLayout.razor.rz.scp.css */
.page[b-dgvf162c4q] {
    position: relative;
    display: flex;
    flex-direction: column;
    /*Code I added - Start*/
    min-height: 100vh;
    /*Code I added - End*/
}

main[b-dgvf162c4q] {
    flex: 1;
}

.sidebar[b-dgvf162c4q] {
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/ /*Original code*/
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #000000 70%);
}

.top-row[b-dgvf162c4q] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    /*   justify-content: flex-end;*/
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-dgvf162c4q]  a, .top-row .btn-link[b-dgvf162c4q] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-dgvf162c4q] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/*Code I added - Start*/
.bottom-row[b-dgvf162c4q] {
    background-color: #f7f7f7;
    border-top: 1px solid #d6d5d5;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    bottom: 0;
    width: 100vw;
}

    /*Select all a elements where parent is a .bottom-row*/
    .bottom-row > a[b-dgvf162c4q] {
        display: flex;
        color: rgb(33, 37, 41);
        /*color and text-decor used to not show it as link*/
        text-decoration: none;
        /*fontsize is the same copied from navbar-brand style inside NavMenu.razor.css*/
        font-size: 1.1rem;
    }

/*Optionally this selector will also work: main article.content*/
main > .content[b-dgvf162c4q] {
    overflow-y: auto;
    margin-bottom: 3.5rem;
}
/*Code I added - End*/

/*less than or equal to*/
/*Max-width is the maximum width at which a style will continue to be applied. 
After that, the style will STOP being applied.*/
@media (max-width: 640.98px) {
    .top-row:not(.logindisplay)[b-dgvf162c4q] {
        display: none;
    }

    .top-row.logindisplay[b-dgvf162c4q] {
        justify-content: space-between;
    }

    .top-row a[b-dgvf162c4q], .top-row .btn-link[b-dgvf162c4q] {
        margin-left: 0;
    }
}

/*greater than or equal to*/
/*Min-width is the minimum width at which a style will START to be applied*/
@media (min-width: 641px) {
    .page[b-dgvf162c4q] {
        flex-direction: row;
    }

    .sidebar[b-dgvf162c4q] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    /*Code I added - Start*/
    .bottom-row[b-dgvf162c4q] {
        left: 250px;
        width: calc(100vw - 250px);
        justify-content: flex-end;
    }
    /*Code I added - End*/

    .top-row[b-dgvf162c4q] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-dgvf162c4q], article[b-dgvf162c4q] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/Portal/Shared/NavMenu.razor.rz.scp.css */
/*.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand {
    font-size: 1.1rem;
}

.oi {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type {
        padding-top: 1rem;
    }

    .nav-item:last-of-type {
        padding-bottom: 1rem;
    }

    .nav-item ::deep a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item ::deep a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item ::deep a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler {
        display: none;
    }

    .collapse {*/
        /* Never collapse the sidebar for wide screens */
        /*display: block;
    }
    
    .nav-scrollable {*/
        /* Allow sidebar to scroll for tall menus */
        /*height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}*/
.logoimage[b-dg1ljn7cqa] {
    width: 10%;
    height: 10%;
    float: left;
    cursor: pointer;
}
