@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
/*
*/
/* Mantieni lo stile della playlist attiva */
.active-song {
    background-color: #fdb52d !important;
    color: #fff !important;
    border-radius: 5px;
}
.player-container {
    margin-top: 20px;
	background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    width: 370px;
    z-index: 10;
    width: 100%; /* Permette di espandersi */
    margin-bottom: 0px; 
}

.textsong-container {
    margin-top: 20px;
	background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: left;
    padding: 30px;
    width: 370px;
    z-index: 10;
    width: 100%; /* Permette di espandersi */
    margin-bottom: 0px; 
}

.img-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h7 { margin: 0; font-size: 20px; text-align: center; }                        /* Titoli Brani */
h8 { margin: 5px 0 20px; font-size: 14px; color: #777; font-weight: 400; }    /* Descrizione Video Playlist*/
h9 { margin: 5px 0 20px; font-size: 13px; color: #000; font-weight: 400; }

/* Controlli */
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.action-btn {
    background-color: transparent;
    border: 0;
    color: #dfdbdf;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    margin: 0 20px;
    transition: color 0.2s ease;
}

.action-btn.big {
    color: #cdc2d0;
    font-size: 30px;
}

.action-btn:hover { color: #fdb52d; }
.action-btn:focus { outline: 0; }

/* Barra Progresso */
.progress-container {
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
    height: 4px;
    width: 100%;
    background-color: #e0e0e0;
}

.progress {
    background-color: #fdb52d;
    border-radius: 5px;
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
}

.time-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #FFF;
}

/* Playlist */
.playlist-container {
    margin-top: 20px;
    width: 370px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 15px;
    width: 100%; /* Permette di espandersi */
    margin-bottom: 0px; 
}

.playlist-container h3 { text-align: center; margin-top: 0; }

#playlist-list {
    list-style: none;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

#playlist-list li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: 14px;
}

#playlist-list li:hover { background-color: #f0f0f0; }
#playlist-list li.active-song { color: #00000; font-weight: bold; }