.custom-player {
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.player-body {
  align-items: center;
}

.play-button {
  width: 50px;
  height: 50px;
  line-height:40px;
  border: 2px solid white;
  border-radius: 50%;
  background: none;
  position: relative;
  cursor: pointer;
  margin-right: 10px;
  box-sizing:border-box;
  margin-bottom:20px;
  padding: 0px;
  font-size: 12px;
}

.play-button::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 19px;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent white;
  font-size: 12px;
}

.playing .play-button::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 3px;
  height: 10px;
  background: white;
  box-shadow: 6px 0 0 white;
  border: none;
}

.custom-player .thumbnail {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.custom-player .info {
  flex: 1;
}

.custom-player .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-player .title {
  font-weight: bold;
  font-size: 14px;
}

.custom-player .duration {
  font-size: 13px;
}

.custom-player .progress-bar {
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.custom-player .progress-fill {
  height: 100%;
  width: 0%;
  background: white;
  transition: width 0.2s linear;
}
