/* Sortier-Links im Tabellen-Header (Frontend wie Backend) */
.cf2list-sort-link { color: inherit; text-decoration: none; display: inline-block; }
.cf2list-sort-link:hover { text-decoration: underline; }

/* Doppelpfeile wie im Backend: beide Pfeile sichtbar, aktiver Pfeil hervorgehoben */
.cf2list-th-sortable .cf2list-sort-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
  margin-left: 6px;
  vertical-align: middle;
}
.cf2list-th-sortable .cf2list-sort-indicator::before,
.cf2list-th-sortable .cf2list-sort-indicator::after {
  content: "";
  position: absolute;
  left: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.cf2list-th-sortable .cf2list-sort-indicator::before {
  top: 0;
  border-bottom: 5px solid #a0a5aa;
}
.cf2list-th-sortable .cf2list-sort-indicator::after {
  bottom: 0;
  border-top: 5px solid #a0a5aa;
}
.cf2list-th-sorted.cf2list-th-asc .cf2list-sort-indicator::before { border-bottom-color: #2271b1; }
.cf2list-th-sorted.cf2list-th-asc .cf2list-sort-indicator::after  { border-top-color:  #c3c4c7; }
.cf2list-th-sorted.cf2list-th-desc .cf2list-sort-indicator::after  { border-top-color:  #2271b1; }
.cf2list-th-sorted.cf2list-th-desc .cf2list-sort-indicator::before { border-bottom-color:#c3c4c7; }
