/* ════════════════════════════════════════════════
   Transcript Karaoke Sync
   ════════════════════════════════════════════════ */

/* === TRANSCRIPT KARAOKE SYNC HIGHLIGHT === */
.transcript-line {
    transition: background 0.25s ease;
}
.tl-sync-active {
    background: rgba(139,92,246,0.14) !important;
    border-left: 3px solid #7c3aed !important;
    padding-left: calc(12px - 3px) !important;
}
.tl-sync-active .tl-ts {
    color: #c4b5fd !important;
}
.tl-sync-active .tl-text {
    color: #f1f1f1 !important;
    font-weight: 500;
}

/* Light mode: dark text on light purple background */
html.light-mode .tl-sync-active {
    background: rgba(109,40,217,0.12) !important;
    border-left-color: #7c3aed !important;
}
html.light-mode .tl-sync-active .tl-ts {
    color: #5b21b6 !important;
    background: rgba(109,40,217,0.18) !important;
}
html.light-mode .tl-sync-active .tl-text {
    color: #1e1b4b !important;
}

