/* Modernized sortable-table column-header arrows. Global (not scoped to one page) since sortable_us_modified.js
   inserts these into every sortable table's header across the entire site. Replaces the old raster
   arrowUp.gif/arrowDown.gif (green up / red down) with a single CSS-drawn triangle per direction, colored via
   currentColor so it automatically matches each page's own sort-header link color (e.g. white on the navy
   headers used throughout the modernized admin/report tables) instead of carrying its own red/green tint. */

.sortarrow .sortArrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
}

.sortArrowUp {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 5px solid currentColor;
}

.sortArrowDown {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
