/* Click-to-sort on list tables */
th.dn-sort {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}
th.dn-sort::after {
    content: " \2195";
    opacity: .32;
    font-size: .72em;
    font-weight: 400;
}
th.dn-sort.is-asc::after {
    content: " \2191";
    opacity: 1;
    color: #1fbf92;
}
th.dn-sort.is-desc::after {
    content: " \2193";
    opacity: 1;
    color: #1fbf92;
}
th.dn-sort:hover {
    color: #0e1830;
}
th.dn-sort:focus-visible {
    outline: 2px solid #1fbf92;
    outline-offset: 2px;
}
