.sidebar {
    margin: 0;
    padding: 0;
    width: 250px;
    background-color: #ffffff;
    position: fixed;
    height: calc(100vh - 48px);
    overflow: auto;
}
.sidebar a {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 2px;
    flex-direction: row;
    color: black;
    padding: 16px;
    text-decoration: none;
    transition: 0.3s;
    div{
        width: 40px;
        height: 40px;
        margin-right: 10px;
        background: #eeeff6;
        display: flex;
        justify-content: center;
        align-items: center
    }
}
.sidebar a.active {
    font-weight: bold;
    background-color: #ffc0cb;
    color: black;
    div{
        color: #ffc0cb;
        background: white;
    }
}
.sidebar a:hover:not(.active) {
    background-color: #c5c5c5;
}
