.ticket-sort-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.ticket-sort-button::after {
  content: "↕";
  color: #9aa8b7;
  font-size: 11px;
}

th[aria-sort="ascending"] .ticket-sort-button::after {
  content: "↑";
  color: #0878ed;
}

th[aria-sort="descending"] .ticket-sort-button::after {
  content: "↓";
  color: #0878ed;
}

.ticket-sort-button:hover,
.ticket-sort-button:focus-visible {
  color: #0878ed;
}

.ticket-date-cell {
  min-width: 112px;
  white-space: nowrap;
}

.ticket-date-cell b,
.ticket-date-cell small {
  display: block;
}
