:root {
  --font-size: 16px;
  --color-bg: white;
  --color-fg: black;
}

body {
  margin: 0;
  font-family: monospace;
  font-size: var(--font-size);
  background-color: var(--color-bg);
  color: var(--color-fg);
}

.AppWrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 60rem;
  padding: 1rem;
  margin: 0 auto;
}

#preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

h1 {
  text-align: center;
  margin: 0;
}

fieldset {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}

input[type="text"],
textarea {
  width: 20rem;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-weight: bold;
}

#schemas button {
  width: 5rem;
  max-width: 100%;
}

#options label {
  cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

input[type="checkbox"] {
  margin-right: 0.6rem;
}
