.dashboard-sidebar{
    width:280px;
    min-height:100vh;

    background:#163314;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    padding:24px;

    position:fixed;
    left:0;
    top:0;
}

.sidebar-brand{
    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:40px;
}

.sidebar-brand img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.sidebar-brand h2{
    color:#fff;

    font-size:24px;
    line-height:1.25;
    font-weight:700;
}

.dashboard-nav{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.dashboard-nav a{
    height:58px;

    display:flex;
    align-items:center;
    gap:16px;

    padding:0 20px;

    border-radius:16px;

    text-decoration:none;

    color:#fff;

    font-size:17px;
    font-weight:500;

    transition:.3s;
}

.dashboard-nav a:hover{
    background:#2B4B24;
}

.dashboard-nav a.active{
    background:#44663A;
}

.dashboard-nav i{
    width:20px;
    font-size:18px;
}

.sidebar-card{
    background:#2B4B24;

    border-radius:24px;

    padding:26px;

    color:#fff;
}

.sidebar-card h3{
    font-size:30px;
    margin-bottom:15px;
}

.sidebar-card p{
    line-height:1.8;
    font-size:15px;

    opacity:.95;
}

.sidebar-progress{
    margin-top:30px;

    height:8px;

    background:rgba(255,255,255,.15);

    border-radius:999px;
}

.sidebar-progress span{
    display:block;

    width:35%;

    height:100%;

    background:#BFD9A7;

    border-radius:999px;
}