:root {
    --burgundy: #800020;
    --burgundy-light: #f4e6ec;
    --bs-primary:   #800020; /* Main burgundy */
    --bs-secondary: #f4e6ec; /* Light burgundy/pink */
    --bs-success:   #198754;
    --bs-info:      #0dcaf0;
    --bs-warning:   #ffc107;
    --bs-danger:    #dc3545;
}

.body {
    font-family: 'Futura', 'Trebuchet MS', sans-serif;
    font-size: 10pt;
}

.bg-burgundy-light {
    background-color: #f4e6ec;
}

.highlight-link {
    color: var(--burgundy);
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 3px;
    transition: background-color .2s, color .2s;
}
.highlight-link:hover, 
.highlight-link:focus {
    background-color: var(--burgundy-light);
    color: #a8325b;
    text-decoration: none;
}