/* Playlist related styles (kept modular for playlists UI) */
.playlist-view, .playlists-section { display: none; }
.playlist-item, .playlist-song {
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.playlist-item:hover, .playlist-song:hover { background: rgba(255,255,255,0.05); }
.add-btn { background: none; border: none; color: var(--accent1); cursor: pointer; margin-left: 10px; }
.side-icon.playlist-section { cursor: pointer; }
.delete-playlist, .delete-song { background: none; border: none; color: var(--accent2); cursor: pointer; font-size: 14px; }
.playlists-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  background: var(--panel);
  border-radius: 12px;
}

.playlist-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.playlist-card img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.playlist-card .playlist-info {
  display: flex;
  flex-direction: column;
}

.playlist-card .playlist-info h3 {
  font-size: 16px;
  color: white;
}

.playlist-card .playlist-info p {
  font-size: 14px;
  color: var(--muted);
}
