﻿:root {
    --sidebarmenucolor: #e7e6e6;
    --activecolor: #a8862c; /*Gold Color*/
    --menucolor: #074368; /*Deep Blue Color*/
    --palebluecolor: #0988b3; /*Pale Blue Color*/
}

.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

.sidebar {
    background-color: var(--palebluecolor);
}

.table > thead {
    color: white;
}

.top-row {
    justify-content: flex-end;
    display: flex;
    align-items: center;
}

    .top-row ::deep a, .top-row .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    /*.top-row:not(.auth) {
        display: none;
    }*/

    .top-row.auth {
        justify-content: space-between;
    }

    .top-row a, .top-row .btn-link {
        margin-left: 0;
    }
}



@media (min-width: 1300px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 60rem;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: relative;
        top: 0;
        z-index: 1;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

@media (min-width:1700px) {
    .sidebar {
        height: 100vh;
    }
}

