body{
    margin:0;
    font-family:'Inter', sans-serif;
    background:white;
}

.sidebar{
    width:270px;
    height:100vh;
    background:#f4f8ff;
    position:fixed;
    border-right:1px solid #e6e8ec;
}

.logo{
    height:70px;
    display:flex;
    align-items:center;
    padding:0 16px;
    border-bottom:1px solid #e6e8ec;
}

.logo img{
    height:35px;
}

.menu{
    padding-top:10px;
}

.menu a{
    display:flex;
    align-items:center;
    gap:15px;
    padding:13px 18px;
    margin:4px 8px;
    border-radius:8px;
    text-decoration:none;
    color:#333;
    font-size:14px;
    background:#f4f8ff;
}

.menu i{
    font-size:17px;
    width:22px;
    text-align:center;
    color:#9ca3af;
}

.menu a:hover,
.menu a.active{
    background:#41246e;
    color:#fff;
}

.menu a:hover i,
.menu a.active i{
    color:#fff;
}

.content{
    margin-left:270px;
    padding:30px;
}
