.progressContainer {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.time {
  font-size: 12px;
  color: var(--tk-gray-600, #888);
  min-width: 40px;
  text-align: center;
}

.progressBar {
  flex: 1;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.progressTrack {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: var(--audio-player-track-bg, rgba(255, 255, 255, 0.2));
  border-radius: 2px;
}

.progressFill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--tk-orange, #f39c12);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.progressThumb {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background-color: var(--tk-white, #fff);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.progressBar:hover .progressThumb {
  opacity: 1;
}
