/* Minimal styles for the Track Me page */
:root {
  color-scheme: light dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  padding: 24px;
}

.container {
  max-width: 560px;
  margin: 0 auto;
}

h1 {
  margin: 0 0 16px 0;
  font-size: 1.75rem;
}

button {
  appearance: none;
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 10px 14px;
  background: transparent;
  cursor: pointer;
}

#output {
  margin-top: 12px;
  min-height: 1.25em;
}


