﻿/*  ============== DASHBAORD NAV =============== */
body.lightmode .sideNav {
    background-color: #fbfbfb;
}

body.darkmode .sideNav {
    background-color: #333;
}

.sideNav {
    position: fixed;
    top: 58px;
    bottom: 0;
    left: 0;
    padding: 25px 0 0; /* Height of navbar */
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
    width: 240px;
    z-index: 600;

    display:flex;
    flex-direction: column;
}

.nav-menu{
    flex-grow: 1;
    overflow-y:auto;
}

.nav-footer{
    text-align: center;
    padding:10px;

}

body.lightmode .sideNav .list-group-item {
    background-color: #fbfbfb;
    color: #000000;
}

body.darkmode .sideNav .list-group-item {
    background-color: #333;
    color: #ffffff;
    border-color: #454d55;
    fill: #ffffff;
}

body.lightmode .sideNav .list-group-item.active {
    background-color: #007bff;
    color: #ffffff;
    fill: #ffffff;
}

body.darkmode .sideNav .list-group-item.active {
    background-color: #0056b3;
    color: #ffffff;
    fill: #ffffff;
}
