﻿
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#app {
    position: relative;
    display: flex;
    flex-direction: row;
}

.content {
    padding-top: 4.6rem;
}

.top-row {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.antCardTitleContainer {
    display: flex;
    justify-content : space-around;
    vertical-align : middle
}

.antCardHeaderDivision {
    border-left: 1px solid #d3d3d3;        
}

.main {
    flex: 1;
    overflow-x: hidden;
}

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .main .top-row {
        background-color: #f7f7f7;
        border-bottom: 1px solid #d6d5d5;
        justify-content: flex-end;
        position: fixed;
        top: 0;
        z-index: 10;
        padding-left: 0px !important;
        right: 0px;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

        .main .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

.collapse {
    display: block !important;
    width: 0px !important;
    min-width: 0px !important;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
    width: 255px;
    min-width: 255px;
    height: 100vh;
    position: absolute;
    top: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 99;
    transition-property: min-width, width;
    transition-duration: 0.25s;
    position: fixed;
}

    .sidebar .top-row {
        background-color: rgba(0,0,0,0.4);
    }

    .sidebar .navbar-brand {
        font-size: 1.1rem;
    }

    .sidebar .oi {
        width: 2rem;
        font-size: 1.1rem;
        vertical-align: text-top;
        top: -2px;
    }

    .sidebar .nav-item {
        font-size: 0.9rem;
        padding-bottom: 0.5rem;
        -moz-user-select: none;
        -ms-user-select: none;
        -webkit-user-select: none;
        user-select: none;
        white-space: nowrap;
    }

        .sidebar .nav-item:first-of-type {
            padding-top: 1rem;
        }

        .sidebar .nav-item:last-of-type {
            padding-bottom: 1rem;
        }

        .sidebar .nav-item a {
            color: #d7d7d7;
            border-radius: 4px;
            height: 3rem;
            display: flex;
            align-items: center;
            line-height: 3rem;
        }

            .sidebar .nav-item a.active {
                background-color: rgba(255,255,255,0.25);
                color: white;
            }

            .sidebar .nav-item a:hover {
                background-color: rgba(255,255,255,0.1);
                color: white;
            }

.navbar-toggler {
    outline: none !important;
    transition-duration: 0.3s;
}

    .navbar-toggler:hover {
        background-color: #dddddd;
    }

.navbar-toggler-icon {
    width: 1.5em !important;
    height: 2em !important;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
    margin-left: 0.5rem;
}

.profile-pic {
    border-radius: 50%;
    width: 30px;
    margin-right: 5px;
}

.page-header {
    margin-right: auto;
    text-align: center;
    margin-bottom: 0px;
    white-space: nowrap;
    margin-left: 1.5rem;
    overflow: hidden;
    max-width: 30vw;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .collapse {
        /*display: none*/
    }    

    .main .top-row {
        left: 0px !important;
    }    

    .sidebar {
        position: sticky !important;
    }

    .navbar-toggler {
        /*display: none;*/
    }
}
