/* ========== MUSIC PLAYER STYLES ========== */
/* Add custom styles for the music player section here */

/* Example: Track info */
.track-info {
  text-align: center;
  margin-bottom: 15px;
}

.track-info .track-title {
  font-size: 15px;
  color: #ff4fd8;
  margin-bottom: 5px;
}

.track-info .track-artist {
  font-size: 12px;
  opacity: 0.7;
}

/* Example: Player controls */
.player-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.player-controls button {
  background: rgba(255, 79, 216, 0.1);
  border: 1px solid rgba(255, 79, 216, 0.3);
  color: #ff4fd8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
}

.player-controls button:hover {
  background: rgba(255, 79, 216, 0.2);
  transform: scale(1.1);
}

/* Example: Progress bar */
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 79, 216, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar .progress {
  height: 100%;
  background: linear-gradient(90deg, #ff4fd8, #ff79e8);
  width: 0%;
  transition: width 0.3s;
}

/* Example: Volume control */
.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.volume-control input[type="range"] {
  width: 100px;
}