/*=====================================================
SIDEBAR
=====================================================*/

.tnp-dashboard-sidebar{
    width:280px;
    flex-shrink:0;

    display:flex;
    flex-direction:column;

    background:#fff;

    border-radius:22px;

    padding:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    /* NEW */
    position:sticky;
    top:30px;
    align-self:start;
}


/*=====================================================
USER
=====================================================*/

.tnp-user-box{
    text-align:center;
    margin-bottom:30px;
}

.tnp-user-box img{
    width:90px;
    height:90px;
    border-radius:50%;
    margin-bottom:15px;
    object-fit:cover;
}

.tnp-user-box h3{
    margin:10px 0 6px;
    font-size:22px;
    color:#111827;
    font-weight:700;
}

.tnp-user-plan{
    display:inline-block;
    margin-top:8px;
    padding:6px 14px;
    background:#eef6ff;
    color:#0057b8;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

/*=====================================================
MENU
=====================================================*/

.tnp-dashboard-menu{
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1;
}

.tnp-dashboard-menu a{
    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 18px;

    border-radius:14px;

    text-decoration:none;

    color:#222;

    font-weight:600;

    transition:all .3s ease;
}

.tnp-dashboard-menu a:hover{
    background:#f3f4f6;
    transform:translateX(4px);
}

.tnp-dashboard-menu a.active{
    background:#0057b8;
    color:#fff;
    box-shadow:0 10px 20px rgba(0,87,184,.25);
}

/*=====================================================
SIDEBAR FOOTER
=====================================================*/

.tnp-dashboard-sidebar-footer{
    margin-top:auto;
    padding-top:25px;
    border-top:1px solid #e5e7eb;
}

.tnp-btn-logout{
    width:100%;
    margin-top:0;
    text-align:center;
}


/*=====================================================
RESPONSIVE SIDEBAR
=====================================================*/

@media (max-width:992px){

    .tnp-dashboard-sidebar{

        width:100%;

        max-width:100%;

        position:relative;

        top:auto;

        align-self:stretch;

        padding:25px;

    }

    .tnp-user-box img{

        width:80px;

        height:80px;

    }

    .tnp-user-box h3{

        font-size:24px;

    }

}

@media (max-width:600px){

    .tnp-dashboard-sidebar{

        padding:20px;

    }

    .tnp-dashboard-menu a{

        padding:16px;

        font-size:15px;

    }

}