.api-history-list {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}

.api-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
}

.api-history-row strong,
.api-history-row small {
  display: block;
}

.api-history-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
}

@media (max-width: 650px) {
  .api-history-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
