/* ===========================
   SIDEBAR SIMON DPMD
=========================== */

.sidebar{
    position: fixed;
    top:0;
    left:0;
    width:240px;
    height:100vh;

    background:#0d47a1;
    color:#fff;

    display:flex;
    flex-direction:column;

    box-shadow:3px 0 15px rgba(0,0,0,.15);

    z-index:999;

    transition:.3s;
}

.main-content{
    margin-left:260px;
    min-height:100vh;

    background:#eef4fb;

    transition:.3s;
}

/* ===========================
   HEADER SIDEBAR
=========================== */

.sidebar-header{

    text-align:center;

    padding:25px 20px;

    border-bottom:1px solid rgba(255,255,255,.15);

}

.sidebar-logo{

    width:75px;

    height:auto;

    display:block;

    margin:0 auto 15px;

}

.sidebar-title h4{

    margin:0;

    font-size:24px;

    font-weight:700;

}

.sidebar-title small{

    color:#dbe8ff;

    letter-spacing:1px;

}
/* ===========================
   MENU SIDEBAR
=========================== */

.sidebar-menu{

    list-style:none;

    margin:20px 0;

    padding:0 15px;

    flex:1;

}

.sidebar-menu li{

    margin-bottom:8px;

}

.sidebar-menu a{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 18px;

    color:#ffffff;

    text-decoration:none;

    border-radius:12px;

    transition:.3s;

    font-size:15px;

    font-weight:500;

}

.sidebar-menu a i{

    font-size:20px;

    width:24px;

    text-align:center;

}

.sidebar-menu a:hover{

    background:#ffffff;

    color:#0d47a1;

    transform:translateX(5px);

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.sidebar-menu a.active{

    background:#ffffff;

    color:#0d47a1;

    font-weight:700;

}

/* ===========================
   FOOTER SIDEBAR
=========================== */

.sidebar-footer{

    padding:18px;

    border-top:1px solid rgba(255,255,255,.15);

}