niemand{
  background:brown;
  border:white dotted 3px;
  position:relative;
  width:300px;
  height:600px;}
  
  
  
  
  
  .player {
    margin-top:30px;
  background-color: black;
  width: 350px; 
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Arial', sans-serif;
  border: 2px solid white; /*  рамка для стиля */
}

@keyframes slideIn {
  to {
    transform: translateX(0); /* Возвращаем в нормальное положение */
  }
}




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

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

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

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

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