#playlist-left-bar {
    position: relative;
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}

.playlist-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Posiziona l'immagine sfocata sotto il contenuto */
    overflow: hidden;
    border-radius: 8px; /* Mantiene la stessa forma del contenitore */
    opacity: 0.6;
}

#playlist-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(40px);
    transform: scale(1.1);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
}

.playlist-info {
    position: relative;
    z-index: 2; /* Posiziona il contenuto sopra l'immagine sfocata */
    text-align: center;
}

.playlist-title {
    font-size: 24px;
    margin: 10px 0;
}

.playlist-details {
    margin: 10px 0;
}

#playlist-thumbnail {
    border-radius: 8px;
}
@media only screen and (max-width: 768px) {
    #playlist-thumbnail {
        height: 150px;
    }
}

#playlist-author-image{
    height: 28px;
    width: 28px;
    border-radius: 50px;
    overflow: hidden;
}