/*====================================================
Sidebar
====================================================*/

.meh-sidebar{
  position:fixed;
  top:82px;
  left:0;
  width:280px;
  height:calc(100vh - 82px);
  background:#fff;
  border-right:1px solid #e8edf3;
  overflow-y:auto;
  z-index:1000;
}

/*====================================================
Logo
====================================================*/

.meh-logo{
    display:flex;
    align-items:center;
    gap:15px;
    height:85px;
    padding:0 25px;
    border-bottom:1px solid #edf2f7;
}

.meh-logo-icon{
    width:46px;
    height:46px;
    border-radius:14px;
    background:linear-gradient(135deg,#204ce5,#00b5b8);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.meh-logo-text{
    font-size:30px;
    font-weight:700;
    line-height:1;
}

.meh-logo-text .blue{
    color:#17315d;
}

.meh-logo-text .green{
    color:#00b5b8;
}

/*====================================================
Navigation
====================================================*/

.meh-nav{
    flex:1;
    padding:30px 18px;
}

.meh-nav-title{
    font-size:12px;
    font-weight:700;
    color:#94a3b8;
    margin-bottom:18px;
    padding-left:12px;
    letter-spacing:1px;
}

.meh-nav a{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:#64748b;
    padding:12px 15px;
    margin-bottom:10px;
    border-radius:14px;
    transition:.3s;
    font-size:15px;
    font-weight:600;
}

.meh-nav a:hover{
    background:#f3f7fc;
    color:#17315d;
}

.meh-nav a.active{
    background:#204ce5;
    color:#fff;
    box-shadow:0 10px 25px rgba(32,76,229,.25);
}

/*====================================================
Icons
====================================================*/

.meh-icon{
    width:38px;
    height:38px;
    border-radius:12px;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#204ce5;
    flex-shrink:0;
    transition:.3s;
}

.meh-icon i{
    font-size:16px;
}

.meh-nav a:hover .meh-icon{
    background:#204ce5;
    color:#fff;
}

.meh-nav a.active .meh-icon{
    background:#fff;
    color:#204ce5;
}

/*====================================================
Footer
====================================================*/

.meh-sidebar-footer{
    padding:20px 18px;
    border-top:1px solid #edf2f7;
}

.meh-sidebar-footer a{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:#64748b;
    padding:12px 15px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
}

.meh-sidebar-footer a:hover{
    background:#fff2f2;
    color:#dc2626;
}

.meh-sidebar-footer a:hover .meh-icon{
    background:#dc2626;
    color:#fff;
}

/*====================================================
Scrollbar
====================================================*/

.meh-sidebar::-webkit-scrollbar{
    width:6px;
}

.meh-sidebar::-webkit-scrollbar-thumb{
    background:#d8dee9;
    border-radius:10px;
}

/*====================================================
Responsive
====================================================*/

@media(max-width:991px){

    .meh-sidebar{
        transform:translateX(-100%);
        transition:.3s;
    }

    .meh-sidebar.open{
        transform:translateX(0);
    }

}

/* Dropdown */

.meh-dropdown-toggle{
    position:relative;
}

.meh-arrow{
    margin-left:auto;
    transition:transform .3s ease;
    font-size:12px;
}

/* Hidden by default */

.meh-submenu{
    display:none;
    margin-left:58px;
    margin-bottom:10px;
}

.meh-submenu a{
    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 15px;

    color:#64748b;

    text-decoration:none;

    font-size:14px;

    border-radius:8px;

    transition:.25s;
}

.meh-submenu a:hover{
    background:#f3f6fb;
    color:#204ce5;
}

.meh-submenu a i{
    width:16px;
    font-size:13px;
}

/* Rotate arrow */

.meh-dropdown-toggle.open .meh-arrow{
    transform:rotate(180deg);
}