/* YouTube Segment Viewer */

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 4px;
}

.video-responsive iframe,
.video-responsive #yt-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#transcript-container {
  height: 520px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 8px;
  border-radius: 4px;
  font-size: 13px;
}

.transcript-line {
  padding: 4px 6px;
  border-radius: 3px;
  margin-bottom: 3px;
  cursor: pointer;
  transition: background-color 0.15s;
  line-height: 1.4;
}

.transcript-line:hover {
  background-color: #f0f0f0;
}

.transcript-line.active {
  background-color: #fff3cd;
  font-weight: 600;
}

.transcript-time {
  font-size: 11px;
  min-width: 38px;
  display: inline-block;
  vertical-align: top;
  padding-top: 1px;
}
