/* Playlist Detail Component Styles */
.playlist-detail-container {
  padding: 20px;
}

.playlist-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.playlist-detail-cover {
  width: 200px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(180, 0, 255, 0.4);
}

.playlist-detail-info h1 {
  color: white;
  margin-bottom: 10px;
}

.playlist-detail-info p {
  color: #ccc;
  margin: 5px 0;
}

.playlist-detail-songs {
  margin-top: 20px;
}

.playlist-detail-song {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.playlist-detail-song:hover {
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
