

.player {
  background-color: black;
  width: 350px; 
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Arial', sans-serif;
  border: 2px solid #ff69b4; /* Розовая рамка для стиля */
}

#track-name {
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

#progress {
  width: 80%;
  accent-color: #ff69b4; /* Тот самый розовый ползунок */
  cursor: pointer;
}

.controls {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

button {
  background: #ff69b4;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

button:hover {
  background: white;
  color: black;
}
