.srt-player-container {
  max-width: 280px;
  margin: 10px auto;
  padding: 10px;
  background: white;
  border-radius: 6px;
  font-family: sans-serif;
}

.srt-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.srt-btn-play,
.srt-btn-pause {
  width: 40px;
  height: 40px;
  background-color: #F6C21A;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srt-btn-play::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #222;
  margin-left: 3px;
}

.srt-btn-pause::before,
.srt-btn-pause::after {
  content: '';
  display: block;
  width: 4px;
  height: 16px;
  background: #222;
  position: absolute;
}

.srt-btn-pause::before {
  left: 12px;
}

.srt-btn-pause::after {
  right: 12px;
}

.srt-progress-container {
  width: 100%;
  height: 4px;
  background-color: #ddd;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

.srt-progress-bar {
  width: 100%;
  height: 100%;
  position: relative;
}

.srt-progress-filled {
  height: 100%;
  width: 0%;
  background-color: #F6C21A;
  transition: width 0.1s linear;
}

.srt-count-display {
  font-size: 11px;
  text-align: center;
  margin-top: 5px;
  color: #333;
}
