@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
/*
*/
/* Assicura che la colonna del player non sia bloccata a 380px se è un video */
.Gallery .player-container {
    width: 100%; /* Permette al video di espandersi */
    max-width: 800px;
    margin-bottom: 0px;
}

/* Stile per l'elemento video */
video {
    display: block;
    outline: none;
    background: #000;
}

/* Mantieni lo stile della playlist attiva */
.active-song {
    background-color: #fdb52d !important;
    color: #fff !important;
	font-weight: bold;
    border-radius: 5px;
}
/* END VIDEO CSS */

.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: 380px;
    z-index: 10;
}

.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: 380px;
    z-index: 10;
}

.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 Video */
h8 { margin: 5px 0 20px; font-size: 14px; color: #777; font-weight: 400; }     /* Infosong Artista Playlist Testo*/
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: 380px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 15px;
}

.playlist-container h3 { text-align: center; margin-top: 0; }

#video-playlist {
    list-style: none;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

#video-playlist li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: 14px;
}

#video-playlist li:hover { background-color: #f0f0f0; }
#video-playlist li.active-song { color: #00000; font-weight: bold; }

/* Assicurati che il tasto fullscreen abbia lo stesso stile degli altri */
#fullscreen:hover {
    color: #fdb52d; /* Il colore giallo/oro che usi nel sito */
    transform: scale(1.1);
    transition: 0.2s;
}