progress.amplitude-song-played-progress {
  background-color: #313252;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  display: block;
  cursor: pointer;
  border: none; }
  progress.amplitude-song-played-progress:not([value]) {
    background-color: #313252; }

progress[value]::-webkit-progress-bar {
  background-color: #313252; }

progress[value]::-moz-progress-bar {
  background-color: #00a0ff; }

progress[value]::-webkit-progress-value {
  background-color: #00a0ff; }


div#single-song-player {
  border-radius: 10px;
  margin: auto;
  /*box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);*/
  margin-top: 50px;
  width: 100%;
  max-width: 460px;
  -webkit-font-smoothing: antialiased; }
  div#single-song-player img[data-amplitude-song-info="cover_art_url"] {
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px; }

/* YouTube-style progress bar */
.youtube-progress-container {
    position: relative;
    height: 5px;
    cursor: pointer;
    margin: 8px 0;
    transition: height 0.1s;
}

.youtube-progress-container:hover {
    height: 8px;
}

.youtube-progress-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
}

.youtube-progress-buffered {
    position: absolute;
    width: 0%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    border-radius: 2px;
}

.youtube-progress-played {
    position: absolute;
    width: 0%;
    height: 100%;
    background: #dc3545;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.youtube-progress-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 13px;
    height: 13px;
    background: #dc3545;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.1s;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.youtube-progress-container:hover .youtube-progress-thumb {
    transform: translate(-50%, -50%) scale(1);
}

/* Przyciski */
#single-song-player .btn {
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#single-song-player .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#single-song-player .btn:active {
    transform: scale(0.95);
}

#single-song-player .btn-light {
    background: #f1f1f1;
}



/* Przyciski */
#single-song-player .btn {
    transition: all 0.15s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#single-song-player .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#single-song-player .btn:active {
    transform: translateY(0);
}

#single-song-player .btn-light {
    background: #f8f9fa;
}

#single-song-player .btn-light:hover {
    background: #e9ecef;
}

/* SVG ikony */
#single-song-player svg {
    display: block;
}

/* Ukryj/Pokaż ikony Play/Pause */

.amplitude-playing {
    display: none;
}

.amplitude-paused {
    display: flex;
}

.amplitude-play-pause.amplitude-playing .amplitude-playing {
    display: flex;
}

.amplitude-play-pause.amplitude-playing .amplitude-paused {
    display: none;
}

.song-list .amplitude-playing {
    display: flex;
}

.song-list .amplitude-song-container {
    cursor: pointer;
    padding: 10px;
}

.song-list .amplitude-song-container {
    border: 1px solid #bbb;
    margin: .5em 0;
    border-radius: 5px;
    transition: border 0.2s, background-color 0.2s;
}

.song-list .amplitude-song-container:hover {
    border: 1px solid rgb(0, 123, 255);
    font-weight: bold;
}


.song-list .amplitude-song-container.amplitude-active-song-container {
    border: 1px solid rgb(0, 123, 255);
    background-color: rgba(0, 123, 255, 0.1);
    font-weight: bold;
}