/* Reset dumb browser default css */
* {
  margin: 0;
  padding: 0;
}

/* Simple base style – copy-paste friendly */
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  /* margin: 2rem; */
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  background: #fdfdfd;
  color: #222;
}

h1, h2, h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  color: #0077cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

button, input, textarea {
  font: inherit;
  padding: 0.3rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #0077cc;
  color: white;
  cursor: pointer;
}
button:hover {
  background-color: #005fa3;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 1rem;
}
th, td {
  border: 1px solid #ccc;
  padding: 0.5rem;
}

ol, ul {
  padding-inline-start: 2rem;
}

footer {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
