/* scrub-event-markers.css — Twitch-VOD style timeline event ticks. */

.scrub-event-markers {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  pointer-events: none;
  /* Children re-enable pointer events so the underlying scrub bar still
   * works for click-through anywhere there's no tick. */
}

.scrub-event-tick {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 70%;
  margin-left: -1.5px;
  border-radius: 1px;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 100ms ease, height 100ms ease, opacity 100ms ease;
  opacity: 0.85;
}
.scrub-event-tick:hover {
  height: 100%;
  transform: scaleY(1.05);
  opacity: 1;
}

.scrub-event-tick.is-cluster {
  width: 5px;
  margin-left: -2.5px;
  border-radius: 2px;
  height: 80%;
}

.scrub-event-tooltip {
  position: absolute;
  z-index: var(--z-tooltip, 9999);
  background: rgba(20, 22, 28, 0.96);
  color: var(--color-text, #e7e8ea);
  border: 1px solid var(--color-border, rgba(255, 255, 255, 0.16));
  border-radius: var(--radius-md, 8px);
  padding: 6px 10px;
  font-family: var(--font-ui, 'Inter', sans-serif);
  font-size: 12px;
  line-height: 1.5;
  pointer-events: none;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.scrub-event-tooltip-more {
  margin-top: 4px;
  font-size: 11px;
  color: var(--color-text-muted, #999);
  font-style: italic;
}
