body {
    background-color: #F4F6F6;
}

.name {
    font-size: 13px;
}

.sidebar {
    background-color: #E0E0E0;
    min-width: 200px;
    max-width: 200px;
    transition: all 0.2s;
}

.content {
    min-height: 100vh;
    width: 100%;
}

.header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #E0E0E0;
}

.header-box>h1 {
    font-size: 14px;
    margin-top: 7px;
    color: #3D3D3D;
    letter-spacing: 0.8px;
}

.a {
    color: #212F3D;
}

.a:hover {
    color: #566573;
    font-weight: bold;

}


.h-color {
    color: #000;
}

.navbar {
    background-color: #FAFAFA;
    box-shadow: 1px 1px 5px #EBEDEF;
}

.navbar-brand {
    align-items: center;
}

.logo {
    width: 45px;
}

.nav_list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding-right: 25px;
}

.nav_item {
    list-style: none;
}

.nav_link {
    text-decoration: none;
}

.nav_link:active {
    font-weight: bold;
}

.nav_name {
    margin: auto;
    padding-right: 25px;
}

#nav-menu {
    transition: all 0.2s;
}





@media screen and (max-width: 962px) {
    .main-container .sidebar .header-box>h1 {
        font-size: 12px;
        margin-top: 11px;
    }

    .navbar {
        background-color: #F4F6F6;
    }

    .nav_menu {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: white;
        box-shadow: 5px 5px 9px #566573;
        width: 100%;
        height: 10%;
        
    }

    #nav-menu.show-nav-menu {
        display: block;
    }

    #toggleButton.hide-icon .iconPlus {
        display: none;
    }

    .plusIcon {
        position: fixed;
        bottom: 10px;
        left: 50%; 
        transform: translateX(-50%); 
        z-index: 999; 
    }

    .iconPlus {
        font-size: 40px;
    }

    .iconn {
        margin-bottom: -15px;
    }


    .nav_list {
        padding-top: 4px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav_icon {
        font-size: 29px;
        color: #2C3E50;
        text-shadow: 1px 1px 2px #3D3D3D;

    }
    .nav_icon:hover{
        font-weight: bold;
    }

    .nav_name {
        font-size: 8px;
        align-items: center;
        display: flex;
        justify-content: center;

    }


}
