body {
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.15s;
}

.card:hover {
    transform: translateY(-2px);
}

.table td {
    vertical-align: middle;
}

textarea.form-control {
    min-height: 100px;
}

/* Glossary word highlights */
.glossary-word {
    text-decoration: underline;
    text-decoration-color: #0dcaf0;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.15s;
}

.glossary-word:hover,
.glossary-word:focus {
    background-color: rgba(13, 202, 240, 0.15);
}

[data-bs-theme="dark"] .glossary-word {
    text-decoration-color: #3dd8f5;
}

[data-bs-theme="dark"] .glossary-word:hover,
[data-bs-theme="dark"] .glossary-word:focus {
    background-color: rgba(13, 202, 240, 0.25);
}
