.sidebar {
    position: fixed;
    left: 0;
    bottom: 0;
    top: 55px;
    width: 84px;
    z-index: 2000;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;

    background-color: white;
    box-shadow: 1px 0px 3px rgba(0, 0, 0, 0.1);  
}

.sidebar-link {
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    border-radius: 10px;
}
.sidebar-link:hover {
    background-color: rgb(204, 204, 204);
}

.sidebar-link img {
    height: 30px;
    margin-bottom: 4px;
}
.sidebar-link div {
    font-family: Roboto, Arial;
    font-size: 12px;
}