.sortable-table__header {
  cursor: pointer;
}

.sortable-table__button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.sortable-table__button::after {
  content: "↕";
  color: var(--text-mention-grey, #666);
  font-size: 0.9em;
}

th[aria-sort="ascending"] .sortable-table__button::after {
  content: "↑";
  color: var(--text-action-high-blue-france, #000091);
}

th[aria-sort="descending"] .sortable-table__button::after {
  content: "↓";
  color: var(--text-action-high-blue-france, #000091);
}

.sortable-table__button:focus-visible {
  outline: 2px solid var(--border-active-blue-france, #000091);
  outline-offset: 4px;
}
