/* Orden columnas matriz — flechitas ▲▼⇅ (paridad desktop) */
.matriz-table th.th-sortable {
  cursor: pointer;
  user-select: none;
  transition: color 0.12s ease;
}
.matriz-table th.th-sortable:hover {
  color: #f3722c;
}
.matriz-table th.th-sortable .th-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}
.matriz-table th.th-sortable .sort-arrow {
  display: inline-block;
  width: 10px;
  font-size: 10px;
  line-height: 1;
  color: #6b7c8f;
  font-weight: 500;
}
.matriz-table th.th-sortable:hover .sort-arrow:not(.asc):not(.desc) {
  color: #7eb8d4;
}
.matriz-table th.th-sortable .sort-arrow.asc,
.matriz-table th.th-sortable .sort-arrow.desc {
  color: #4fc3f7;
}
