/* Custom styles for Langoala */

/* Navbar styling */
.navbar {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.navbar-brand {
    font-weight: 500;
    color: #212529 !important;
}

.navbar-nav .nav-link {
    color: #6c757d !important;
}

.navbar-nav .nav-link:hover {
    color: #212529 !important;
}

.word-clickable {
    cursor: pointer;
    text-decoration: underline;
    color: #0d6efd;
    transition: background-color 0.2s;
}

.word-clickable:hover {
    background-color: #e7f1ff;
}

.turn-clickable {
    cursor: pointer;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border-left: 3px solid #0d6efd;
    transition: background-color 0.2s;
}

.turn-clickable:hover {
    background-color: #f8f9fa;
}

.word-blank {
    border-bottom: 2px solid #0d6efd;
    min-width: 100px;
    display: inline-block;
    padding: 0 5px;
}

.word-blank input {
    border: none;
    border-bottom: 1px solid #0d6efd;
    outline: none;
    width: 100%;
    text-align: center;
}

.word-blank.correct {
    border-bottom-color: #28a745;
    background-color: #d4edda;
}

.word-blank.incorrect {
    border-bottom-color: #dc3545;
    background-color: #f8d7da;
}

.conversation-turn {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.25rem;
}

.speaker-label {
    font-weight: bold;
    color: #6c757d;
    font-size: 0.9rem;
}

.translation-tooltip {
    position: absolute;
    background-color: #333;
    color: white;
    padding: 0.5rem;
    border-radius: 0.25rem;
    z-index: 1000;
    font-size: 0.9rem;
}



