/* Transcript styling */
.transcript-line {
    transition: opacity 0.5s ease, background-color 0.5s ease;
    margin: 0;
    padding: 10px;
    border-radius: 4px;
    font-size: 20px;
    line-height: 1.5;
    color: white;
}

#transcript-container {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    height: 150px;
    overflow-y: auto;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.highlight {
    animation: highlight-fade 1.5s ease;
}

@keyframes highlight-fade {
    0% {
        background-color: rgba(255, 255, 0, 0.2);
    }
    100% {
        background-color: transparent;
    }
}

/* Speaker labels */
.speaker-label {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    margin-right: 8px;
}

.agent-label {
    background-color: #4a86e8;
    color: white;
}

.human-label {
    background-color: #6aa84f;
    color: white;
}
