/* Custom scrollbars for transcript and highlights panels */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #070a11;
}

::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #374151;
}

/* Video wrapper adjustments */
video::-webkit-media-controls-panel {
  background-image: linear-gradient(transparent, rgba(7, 10, 17, 0.85)) !important;
}

/* Smooth transcript item transitions */
.cue-box {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Offset sections automatically below sticky navbar */
.scroll-mt-24 {
  scroll-margin-top: 6rem;
}