/* =====================================================
   Songs playlist page
   ===================================================== */

.songs-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
  margin-top: 28px;
}

.song-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
  text-align: left;
  gap: 16px;
}

.song-row:hover {
  background: rgba(186, 141, 66, 0.12);
  border-color: rgba(186, 141, 66, 0.3);
}

.song-row:active {
  transform: scale(0.98);
}

/* Currently playing row highlight — added by JS */
.song-row.is-playing {
  background: rgba(186, 141, 66, 0.18);
  border-color: rgba(186, 141, 66, 0.5);
}

.song-row-title {
  font-family: 'Savor', 'Montserrat', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  flex: 1;
  font-style: italic;
}

.song-row.is-playing .song-row-title {
  color: var(--color-yellow-light);
}

.song-row-play {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.song-row.is-playing .song-row-play {
  background: rgba(186, 141, 66, 0.3);
}

.songs-bottom-spacer {
  height: 60px;
}
