.title-bar {
  text-align: center;
  font-size: 20px;
  padding: 10px;
  border-bottom: 1px solid #444;
}

.music-img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

.music-title {
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
  color: white;
}

.player-controls {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 15px;
  border-top: 1px solid #444;
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.progress-container span {
  font-size: 12px;
  color: white;
  width: 35px;
  text-align: center;
}

.progress-bar {
  flex: 1;
}

.controls-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  width: 100%;
}

.btn-group-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}

.player-controls button {
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-btn {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.play-btn:hover {
  background: rgba(0, 191, 255, 0.3);
}

.player-controls button:hover:not(.play-btn) {
  background: rgba(255, 255, 255, 0.2);
}

.player-controls button svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.volume-container {
  position: relative;
  display: inline-block;
}

.volume-popup {
  position: absolute;
  bottom: calc(100% + 30px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  display: none;
  align-items: center;
}

.volume-slider {
  appearance: slider-vertical;
  width: 35px;
  height: 90px;
  margin-bottom: 10px;
}

.volume-value {
  font-size: 18px;
  margin-bottom: 2px;
}
