.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

body {
    font-family: sans-serif;
    max-width: 500px;
    margin: 2rem auto;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    box-sizing: border-box;
}
h1, h2 {
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
input, select, textarea, button {
    padding: 0.5rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}
button {
    /*background-color: #2e7d32; /* waldgrün */
    background-color: #8B4513; /* holzbraun (auskommentiert) */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: scale(1);
}
button:hover {
    opacity: 0.9;
}
button:active {
    transform: scale(0.96); /* Beim Klicken leicht kleiner */
}

.success {
    background: #dff0d8;
    padding: 1rem;
    border-radius: 5px;
    color: #3c763d;
    margin-bottom: 1rem;
    text-align: center;
}
ul {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    list-style: none;
    padding: 0;
}

@media (max-width: 400px) {
    body {
        padding: 0.5rem;
    }
    h1, h2 {
        font-size: 1.5rem;
    }
}