.mtcv-timeline {
  display: flex;
  justify-content: flex-start;
  gap: 0.6rem;
  padding: 0;
}
.mtcv-btn-playpause {
  background: transparent;
  height: fit-content;
  border: none;
  position: relative;
  top: 0.3rem;
  padding: 0;
}
.mtcv-btn-playpause img {
  width: 1.1rem;
  height: 1.1rem;
}

.mtcv-timeline-track {
  width: 100%;
  padding: 0.5rem 0.5rem 0 0.5rem;
  position: relative;
}

.progress-container {
  position: relative;
  height: 0.6rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
}

.progress-bar {
  position: absolute;
  top: 25%;
  left: 0;
  height: 45%;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  border-radius: 0.5rem;
}

.selected-range {
  position: absolute;
  top: 25%;
  left: 0;
  height: 45%;
  background: linear-gradient(90deg, #8db7ff, #667eea);
  border-radius: 0.5rem;
}

.current-time-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0.1rem;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

.progress-handle {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.progress-handle-icon {
  position: absolute;
  width: 0.7rem;
  height: 0.9rem;
  border-radius: 0.4rem;
  background-color: #FFF;
  border: 2px solid #B2B2B2;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
  z-index: 15;
}

.current-time-marker {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background-color: #FFF;
  border: 2px solid var(--primary-color);
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
  z-index: 20;
}

.start-handle:hover, .end-handle:hover {
  border-color: var(--primary-color);
}

.current-time-marker:hover {
  border-color: #B2B2B2;
}

.time-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
}
.time-label {
  font-weight: 400;
  color: var(--gray-500);
  margin-top: -0.2rem;
}
#startTimeLabel {
  margin-left: -0.6rem;
}
#endTimeLabel {
  margin-right: -0.6rem;
}