nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    background-color: rgb(255, 255, 255);
    left: 0;
    top: 56px;
    bottom: 0;
    width: 71px;
    gap: 8px;
    z-index: 101;

}

.navbar-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70px;
    gap: 7px;
    padding: 0px 10px;
}

.navbar-item:hover {
    background-color: rgb(238, 238, 238);
}

.navbar-item img {
    width: 24px;
}

.navbar-item .icon-title {
    font-size: 9px;
    font-weight: 500;
    text-align: center;
}


@media (max-width: 500px) {
    nav {
        flex-direction: row;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        justify-content: space-around;
        background-color: white;
        border-top: 1px solid rgb(222, 222, 222);
        z-index: 500;
    }

    .youtube-music-icon {
        display: none;
    }
}