.sd-dashboard-wrapper{
    display:flex;
    align-items:flex-start;
    gap:36px;
    width:100%;
}

.sd-sidebar{

    width:280px;
    min-width:280px;
    height:100vh;

    display:flex;
    flex-direction:column;

    position:sticky;
    top:0;

    align-self:flex-start;
    flex-shrink:0;

    background:#fff;

    border:1px solid #ECE8F8;
    border-radius:24px;

    padding:28px;

    box-shadow:0 2px 8px rgba(0,0,0,.02);

    overflow:hidden;

}

.sd-sidebar-menu{

    display:flex;
    flex-direction:column;

    gap:10px;

    flex:1;

    margin-top:32px;

}

.sd-back-button{

    display:block;

    margin-bottom:30px;

    color:#6D3DF5;

    text-decoration:none;

    font-size:60px;

    font-weight:600;

}

.sd-last-opened-card{

    background:#fff;

    border:1px solid #ECE8F8;

    border-radius:20px;

    padding:18px;

}

.sd-last-opened-label{

    display:inline-block;

    background:#F3EFFF;

    color:#6D3DF5;

    font-size:11px;

    font-weight:700;

    padding:4px 10px;

    border-radius:999px;

    margin-bottom:12px;

}

.sd-last-opened-title{

    font-size:18px;

    font-weight:700;

    color:#14142B;

    margin-bottom:4px;

}

.sd-last-opened-subtitle{

    font-size:14px;

    color:#6B7280;

}

.sd-tab-button{

    all:unset;

    display:flex;

    align-items:center;

    gap:16px;

    padding:10px 20px;

    border-radius:18px;

    cursor:pointer;

    transition:.25s;

    box-sizing:border-box;

}

.sd-tab-button:hover{

    background:#F7F4FF;

}

.sd-tab-button.active{

    background:#F3EEFF;

}

.sd-tab-button span{

    font-size:18px;

    font-weight:500;

    color:#1E1E2D;

}

.sd-tab-button i{

    font-size:24px;

    color:#5B6075;

    transition:.25s;

}

.sd-tab-button:hover span,
.sd-tab-button:hover i{

    color:#6D3DF5;

}

.sd-tab-button.active span,
.sd-tab-button.active i{

    color:#6D3DF5;

}

.sd-tab-button.active span{

    font-weight:600;

}

.sd-tab-icon{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.sd-tab-icon i{

    font-size:24px;

}

.sd-tab-text{

    display:flex;

    align-items:center;

}

.sd-tab-text span{

    font-size:18px;

    font-weight:500;

}

.sd-content{

    flex:1;

    min-width:0;

}

.sd-panel{

    display:none;

}

.sd-panel.active{

    display:block;

}

@media (max-width:768px){

    .sd-dashboard-wrapper{

        flex-direction:column;

    }

    .sd-sidebar{

        position:relative;

        width:100%;

        min-width:100%;

        height:auto;

    }

}