body {
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    text-decoration: underline;
}

.navbar-brand img {
    max-height: 48px;
}

.btn-material {
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: box-shadow 0.2s ease-in-out;
}

.btn-material:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.card {
    border: none;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Interactive transcription styles */
.transcription-container {
    max-height: 400px; /* Already set in HTML via style attribute, but good for fallback */
    overflow-y: auto; /* Already set in HTML via style attribute, but good for fallback */
    /* Other properties like padding, border, background, border-radius, shadow are handled by Bootstrap classes in HTML */
    scroll-behavior: smooth; /* Keep this for smooth scrolling */
}

.transcription-word {
    cursor: pointer;
    transition: background-color 0.2s;
    padding: 2px 4px;
    border-radius: 4px;
    display: inline-block; /* Ensures padding and border-radius are applied correctly */
    margin: 1px 0; /* Optional: Adds a tiny bit of vertical space between lines of words if they wrap */
}

.transcription-word:hover {
    background-color: rgba(0, 123, 255, 0.1); /* Light blue hover */
}

.transcription-word.highlight {
    background-color: rgba(13, 110, 253, 0.25); /* Bootstrap primary tint */
    font-weight: 600;
}
