body{
    background-color:rgb(48, 44, 46);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  justify-content: center;
}

.playListContainer {
  margin-bottom: 100px;
}

.trackItem {
  color: #07ffc9;
  font-size: 20px;
  border-bottom: 1px solid #6c757d;
  padding: 10px 0px;
  cursor: pointer;
  user-select: none;
}
.musicPlayer {
    display: flex;
    flex-direction: row;
  
}

.currentAndTotleTime {
  color: #d6c809;
  font-size: 16px; 
}

#currentProgress {
  width: 0%;
  height: 100%;
  background-color: #dc3545;
}

.controls {
  font-size: 30px;
  color: #fff;
  margin: 20px 40px;
  cursor: pointer;
}

#progressBar {
  width: 500px;
  height: 5px;
  background-color: #6c757d;
}
.pauseButton {
  display:none;
}

