.panels {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.panel {
  background: white;
  padding: 10px 0 0 0px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  flex: 1;
}

.panel h2 {
  text-align: center;
  color: #333;
  margin-bottom: 15px;
}

.user {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.info {
  font-size: 16px;
}
.top-songs {
  max-width: 820px;
  margin: 40px auto;
  padding: 5px;
}

.song-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.song-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: white;
  margin-bottom: 18px;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 16px;
  transition: box-shadow 0.2s ease-in-out;
}

.song-list li:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.song-info {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 14px;
}

.song-info img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.song-text {
  display: flex;
  flex-direction: column;
}

.song-title {
  font-weight: 600;
  font-size: 1rem;
}

.song-subtitle {
  font-size: 0.875rem;
  color: #555;
}

.custom-player {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.controls {
  display: flex;
  gap: 8px;
}

button.play-btn, button.rewind, button.forward {
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-size: 0.95rem;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button.play-btn:hover,
button.rewind:hover,
button.forward:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.progress {
  width: 160px;
  /* appearance: none; */
  height: 0px;
  background: #ddd;
  border-radius: 20px;
  outline: none;
}

.progress::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6ec4;
  cursor: pointer;
}
