
/* Make space for the fixed player and footer */
body {
    /* Adjust based on player height + footer height */
    /* Adjust based on player height + footer height */
}

.transcript-container {
    overflow-y: visible;
    scroll-behavior: smooth;
    height: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scroll-padding-bottom: 80px; /* Höhe der Player-Kontrollen */
}

.transcript-line {
    padding: 0.5rem;
    margin: 0;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.transcript-line small {
    display: block;
    margin: 0;
    font-size: 0.75rem;
    color: #6c757d; /* light muted text */
}

.transcript-line:hover {
    background-color: #e9ecef; /* A slightly darker hover for better feedback */
}

.transcript-line.active {
    background-color: #e7f6fd; 
    font-weight: bold;
}

.player-container {
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

#play-pause-btn i.bi-play-fill {
    position: relative;
    left: 2px; /* Visual centering for play icon */
}


/* The actual footer at the bottom of the content */
.page-footer {
    margin-bottom: 150px; /* Space above the fixed player */
}

/* Desktop view adjustments */