*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
  background: #f7f7f8;
  color: #222;
  padding: 1rem;
}

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

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 0.5em;
}

fieldset {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.2rem 1rem 1rem;
  margin-bottom: 1.5rem;
  background: #fff;
}

legend {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: #222;
  background: #eef1f4;

  padding: 0 0.5rem;
  border-radius: 4px;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #666;
}

button {
  background: #222;
  color: #fff;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #444;
}

/* Liste insgesamt */
ul {
  list-style: none; /* Standardpunkte entfernen */
  padding-left: 0;
  margin-bottom: 1.5rem;
}

/* Listenelemente */
li {
  padding: 0.5rem 0.6rem;
  margin-bottom: 0.3rem;

  background: #f2f3f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;

  color: #333;
  font-size: 0.95rem;
}

.no-wrap {
  white-space: nowrap;
}

@media (max-width: 600px) {
  body {
    padding: 0.8rem;
  }

  fieldset {
    padding: 1rem;
  }

}

