/* styles.css */

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f5;
}

main {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem;
  background: #fff;
  min-height: 100vh;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

#status {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

button {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}