.player-container {
  max-width: 600px;
  width: 100%;
  margin: 40px auto;
  background: #fff;
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
}

.now-playing {
  text-align: center;
  margin-bottom: 15px;
}

.song-name {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.song-artist {
  font-style: italic;
  color: #555;
  margin: 5px 0 0;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.controls button {
  background: #f0f0f0;
  border: none;
  padding: 10px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.controls button:hover {
  background: #e0e0e0;
}

.progress-bar {
  width: 100%;
  margin-bottom: 20px;
  accent-color: #e74c3c;
  height: 6px;
  border-radius: 5px;
}

.playlist {
  list-style: none;
  padding: 0;
}

.playlist li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.playlist li:hover {
  background: #f9f9f9;
  font-weight: 500;
}

.playlist li.active {
  background: #eaf4ff;
  font-weight: bold;
}
