/* Tijdbalk onder het kaartje: afspeelknop, schuif over de afgelopen twee uur,
   en de klok van het beeld dat je op dat moment ziet. */
.tijdbalk {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem 0.4rem;
  border-top: 1px solid var(--border-soft, var(--border));
}

.tijdbalk[hidden] { display: none; }

.speel {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: transform 0.06s ease;
}

.speel:active { transform: scale(0.9); }
.speel svg { width: 1.05rem; height: 1.05rem; fill: currentColor; }

/* Eén icoon met twee paden: afspelen of pauze, nooit allebei. */
.speel .ic-pauze { display: none; }
.speel.is-bezig .ic-speel { display: none; }
.speel.is-bezig .ic-pauze { display: block; }

.tijdspoor { flex: 1; min-width: 0; }

.tijdspoor input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  margin: 0;
  border-radius: 999px;
  background: var(--chip);
  cursor: pointer;
}

.tijdspoor input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--card);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.tijdspoor input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid var(--card);
  border-radius: 50%;
  background: var(--accent);
}

.tijdmerken {
  display: flex;
  justify-content: space-between;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.tijdklok {
  flex-shrink: 0;
  min-width: 4.6rem;
  text-align: right;
  font-size: 0.8rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
}
