.history-actions {
  display: flex;
  align-self: center;
  gap: 8px;
}

.history-actions .history-link,
.history-delete {
  padding: 10px 16px;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

.history-delete {
  border: 1px solid #efb4b4;
  background: #fff;
  color: #c74343;
  cursor: pointer;
}

.history-delete:disabled {
  opacity: .55;
  cursor: wait;
}

@media (max-width: 640px) {
  .history-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .history-actions .history-link,
  .history-delete {
    text-align: center;
  }
}
