/* Grundlayout */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f8;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.container {
  background-color: white;
  max-width: 500px;
  width: 90%;
  margin: 30px auto;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Titel */
.container h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #003366;
}

/* Formularfelder */
label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 600;
}

input[type="text"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Checkboxen nebeneinander */
.checkbox-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.checkbox-row input[type="checkbox"] {
  margin-right: 8px;
}

/* Buttons */
button, input[type="button"] {
  background-color: #0072c6;
  color: white;
  border: none;
  padding: 10px 16px;
  margin-top: 15px;
  margin-right: 10px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover, input[type="button"]:hover {
  background-color: #005a9e;
}

/* Abschnitt für Liste */
#ausgewaehlt {
  margin-top: 25px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 600px) {
  .container {
    padding: 15px;
  }

  button, input[type="button"] {
    width: 100%;
    margin-bottom: 10px;
  }
}
