/* Users census table enhancements */
#users-table th {
    cursor: pointer;
    user-select: none;
}
#users-table th:hover {
    background-color: rgba(255,255,255,0.1);
}
#users-table th.sorted-asc::after {
    content: " ▲";
}
#users-table th.sorted-desc::after {
    content: " ▼";
}