.toolbar-actions {
  display: flex;
  gap: 10px;
}

.sort-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: nowrap;
}

.sort-button::after {
  content: " ↕";
  opacity: 0.55;
}

th[aria-sort="ascending"] .sort-button::after {
  content: " ↑";
  opacity: 1;
}

th[aria-sort="descending"] .sort-button::after {
  content: " ↓";
  opacity: 1;
}

@media (max-width: 800px) {
  .toolbar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
