/* Force high visibility for links in the change list table */
#result_list tbody tr td a, 
#result_list tbody tr th a {
    color: var(--color-primary-600) !important; /* Force primary blue color */
    font-weight: 600 !important;             /* Make text bold */
    text-decoration: none;                   /* No underline by default */
}

#result_list tbody tr td a:hover, 
#result_list tbody tr th a:hover {
    text-decoration: underline !important;   /* Underline only on hover */
    color: var(--color-primary-700) !important; /* Slightly darker on hover */
}
