.progress-container {
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 4px;
  margin-top: 8px;
  cursor: pointer;
  position: relative;
}
.progress-bar {
    height: 8px;
}
.progress-fill {
  height: 100%;
  width: 0;
  background: var(--color-primary);
  border-radius: 4px;
  transition: width 0.1s linear;
}
.time {
  font-size: 0.9em;
  margin-top: 4px;
}