/* glossary.css */
.glossary-link {
    color: #1a5fb4;
    text-decoration: none;
    border-bottom: 1px dashed rgba(26, 95, 180, 0.4);
    transition: all 0.2s ease;
}

.glossary-link:hover {
    color: #c64600;
    border-bottom: 1px solid #c64600;
    background-color: rgba(198, 70, 0, 0.05);
}