#player-container {
display: flex;
max-width: 1020px;
max-height: 450px;
margin: 30px auto;
background: none;
border: 3px solid white;
border-radius: 8px;
overflow: hidden;
font-family: Arial;
letter-spacing: 1.5px;
}

/* Pannello di Controllo (Sinistra) */
#player-left-side {
width: 40%;
padding: 20px;
background: none;
color: white;
text-align: center;
}

.titolo, .artista {
font-weight: bold;
font-size: 7px;
padding: 5px;
background-color: none;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
border-radius: 5px;
margin: 15px 5px;
width: auto;
}

/* Playlist (Destra) */
#player-right-side {
flex: 1;
width: 100%;
padding: 20px;
background: none;
overflow: hidden;	
overflow-y: scroll;
}

.amplitude-play-pause {
cursor: pointer;
padding: 0;
/*background: #ff5722;
border-radius: 5px; */
background-size: contain;
background-repeat: no-repeat;
background-position: center;
background-color: transparent;
border: none;
width: 35px;
height: 35px;
display: inline-block;
transition: transform all 0.3 ease;
}

.amplitude-play-pause :hover{
transform: scale(1.1);
}

.amplitude-play-pause :active{
transform: tranlateY(-2px);
opacity: 0.8;
}

.amplitude-playing{
padding: 0;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-color: transparent;
border: none;
width: 35px;
height: 35px;
display: inline-block;
}

.amplitude-paused{
padding: 0;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-color: transparent;
border: none;
width: 35px;
height: 35px;
display: inline-block;
}

.amplitude-prev {
padding: 0;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-color: transparent;
border: none;
width: 35px;
height: 35px;
display: inline-block;
}

.amplitude-next {
padding: 0;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-color: transparent;
border: none;
width: 35px;
height: 35px;
display: inline-block;
}

.amplitude-next, .amplitude-prev {
transition: all 0.2 ease;
cursor: pointer;
}

.amplitude-next :hover, .amplitude-prev :hover{
transform: scale(1.1);
}

.amplitude-prev :active{
transform: tranlateY(-2px);
opacity: 0.8;
}

.amplitude-next :active{
transform: tranlateY(2px);
opacity: 0.8;
}

.amplitude-active-song-container {
background: #e0e0e0;
color: black;
font-size: 11px;
/*font-weight: bold; */
border-radius: 5px;
border-left; 10px solid red;
}

.amplitude-song-container {
padding: 10px;
font-size: 10px;
/*border-bottom: 1px solid white; */
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: all 0.2s ease;
}

.amplitude-song-container:hover {
transform: tranlateY(5px);
background: grey;
opacity: 0.9;
border-radius: 5px 8px 2px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.song-title {
border: none;
}

.amplitude-song-slider {
font-size: 7px;
padding: 8px;
background-color: none;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
border-radius: 5px;
margin: 0 5px;
}

.amplitude-volume-slider {
font-size: 7px;
padding: 8px;
background-color: none;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
border-radius: 5px;
margin: 0 5px;
}

.amplitude-current-time {
font-size: 10px;
padding: 8px;
background-color: none;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
border-radius: 5px;
margin: 0 5px;
}