/* Sort affordances for Arena provider table. */
.arena-dashboard .arena-table thead th.arena-sortable{
  cursor:pointer !important;
  user-select:none !important;
  transition:background-color .15s ease,color .15s ease !important;
}
.arena-dashboard .arena-table thead th.arena-sortable:hover{
  background:#f4f7fb !important;
  color:#344054 !important;
}
.arena-dashboard .arena-table thead th.arena-sortable::after{
  content:"↕";
  display:inline-block;
  margin-left:7px;
  color:#b2bac8;
  font:700 10px/1 Arial,sans-serif;
  vertical-align:middle;
}
.arena-dashboard .arena-table thead th.arena-sort-active{
  color:#2456b8 !important;
  background:#f5f8ff !important;
}
.arena-dashboard .arena-table thead th.arena-sort-active[data-sort-direction="asc"]::after{
  content:"▲";
  color:#2563eb;
}
.arena-dashboard .arena-table thead th.arena-sort-active[data-sort-direction="desc"]::after{
  content:"▼";
  color:#2563eb;
}
.arena-dashboard .arena-table thead th.arena-sortable:focus-visible{
  outline:2px solid #8fb0f5 !important;
  outline-offset:-3px !important;
}
.arena-dashboard .arena-table thead th.arena-fa-head::after{
  margin-left:0;
  margin-right:7px;
}
