/*
 * Lineup Narration — inline status strip on the Lines tab.
 *
 * There is no lineup mic button any more: the floating in-point mic FAB
 * (#narrationMicBtn, styled in micButton.css) doubles as the lineup mic
 * while the Line tab is active, so all the button-state colours live there.
 * What's left here is the strip that shows the live transcript underneath
 * the Select Line toolbar.
 */

/* Inline status strip under the toolbar: shows "Listening…" and the live
 * transcript tail while recording, "Working out the lineup…" after stop. */
.lineup-narration-status {
    display: none;
    margin: 2px 8px 4px;
    padding: 4px 8px;
    border-left: 3px solid #2ecc71;
    background: rgba(46, 204, 113, 0.08);
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.35;
    color: #444;
    font-style: italic;
    word-break: break-word;
}

.lineup-narration-status.visible {
    display: block;
}
