.sidebar{
    position: fixed;
    top:57px;
    left: 0;
    bottom: 0;
    width: 70px;
    background-color: rgb(248, 248, 248);;
    margin-top: -2px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sidebar-link{
    height: 76px;
    width: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sidebar-icon{
    width: 24px;
}
.sidebar-text{
    font-size: 10px;
    font-weight: none;
    margin: 0;
}
.sidebar-link:hover{
    background-color: rgba(210, 210, 210, 0.907);
}
/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    .sidebar{
        position: fixed;
        top:55px;
        left: 0;
        bottom: 0;
        width: 60px;
        background-color: rgb(248, 248, 248);;
        margin-top: -10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sidebar-link{
        height: 76px;
        width: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .sidebar-icon{
        width: 24px;
    }
    .sidebar-text{
        font-size: 10px;
        font-weight: none;
        margin: 0;
    }
    .sidebar-link:hover{
        background-color: rgba(210, 210, 210, 0.907);
    }
}