:root {
  --font-sans: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
}

button {
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

textarea,
input[type="text"],
input[type="search"] {
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-family: var(--font-mono);
}

.panel {
  border-radius: 18px;
  padding: 20px;
}

.actions {
  gap: 8px;
}

.history-list {
  row-gap: 12px;
}
