/* Timeline container and progress bar styles */

.pp-timeline-container {
  display: flex;
  align-items: center;
  flex: 1 1 0%;
  min-width: 0;
  gap: 10px;
  margin: 0 16px;
}

.pp-progress-bar {
  flex: 1 1 0%;
  min-width: 0;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
  -webkit-appearance: none;
  appearance: none;
  background-image: linear-gradient(to right, #f03 0%, #f03 0%, rgba(255, 255, 255, 0.3) 0%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Webkit styles for progress bar */
.pp-progress-bar::-webkit-slider-track {
  background: transparent;
  border-radius: 4px;
  height: 6px;
  border: none;
}

.pp-progress-bar::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f03;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  -webkit-appearance: none;
  appearance: none;
}

/* Firefox styles for progress bar */
.pp-progress-bar::-moz-range-track {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  height: 6px;
  border: none;
}

.pp-progress-bar::-moz-range-progress {
  background: #f03;
  border-radius: 4px;
  height: 6px;
}

.pp-progress-bar::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f03;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin-top: -5px;
}

.pp-current-time,
.pp-duration {
  color: #fff;
  font-size: 14px;
  min-width: 48px;
  text-align: center;
  user-select: none;
}

/* Timeline tooltip */
.pp-timeline-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  transform: translateX(-50%);
  top: -30px;
} 