.dashBoard{
    padding: .5rem 3%;
    background: #f0f0f0;
    height: 100%;
    display: flex;
}
.dashBoard .container{
    display: flex;
    gap: .5rem;
    padding: 1rem;
    border-radius: 1rem;
    background: #fff;
    width: 100%;
}
.dashBoard .container .aside{
    display: flex;
    flex-direction: column;
    padding: .5rem;
    border-radius: .5rem;
    background: #f5f5f5;
    row-gap: 1rem;
    align-items: center;
    height:100%;
}
.dashBoard .container .aside span{
    padding: .5rem;
    border-radius: .3rem;
    color: #777;
    display: flex;
    width:100%;
    gap: .3rem;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 400;
    box-shadow: 0 0 8px transparent;
}





.dashBoard .container .aside span:hover{
    background: #fff;
    color: #333;
}
.dashBoard .container .aside span.active{
    background: #217950;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 0 8px #217950;
}

.dashBoard .container .aside a{
    font-size: .6rem;
    padding: .3rem .5rem;
    color: #fff;
    margin-top: auto;
    background: #727272;
    border-radius: .3rem;
}

.dashBoard .container .aside .setup{
    margin-top: auto;
}


.dashBoard .container .aside h4{
    color: #999;
    font-size: .5rem;
}