/* ==================== MUSIC PLAYER ==================== */
#music-player .window-title::after {
  cursor: pointer;
  transition: all 0.2s;
}

#music-player .window-title::after:hover {
  background: linear-gradient(180deg, #f5b89e 0%, #ef7961 29%, #bc402f 100%);
  transform: scale(1.1);
}

#now-playing {
  margin-bottom: 15px;
  font-size: 13px;
  text-align: center;
  color: #000000;
}

#current-song {
  font-weight: bold;
  color: #0000aa;
}

.player-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}

.player-controls button {
  background: linear-gradient(180deg, #d4d0c8, #bfbbb3);
  border: 2px outset #ffffff;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
}

.player-controls button:hover {
  background: linear-gradient(180deg, #e4e0d8, #cfcbc3);
}

.player-controls button:active {
  border-style: inset;
  background: linear-gradient(180deg, #bfbbb3, #d4d0c8);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-icon {
  font-size: 16px;
  user-select: none;
}

#volume-slider {
  flex: 1;
  height: 6px;
  background: #d4d0c8;
  border: 1px inset #808080;
  outline: none;
  cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: linear-gradient(180deg, #366ef3, #2d69f4 86%, #1a3eb4);
  border: 1px solid #003c74;
  cursor: pointer;
  border-radius: 2px;
}

#volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: linear-gradient(180deg, #366ef3, #2d69f4 86%, #1a3eb4);
  border: 1px solid #003c74;
  cursor: pointer;
  border-radius: 2px;
}
