:root {
  /* ... (Farb-Variablen bleiben gleich) ... */
  --primary: #337ab7;
  --secondary: #286090;
  --accent: #00BFFF;
  --primary-light: #e6f0f7;
  --text: #222;
  --bg: #f4f9fb;
  --danger: #ff6b6b;
  --info: #337ab7;
  --status-hoch: #ffdddd;
  --status-mittel: #fff0dd;
  --status-niedrig: #ddffdd;
  --status-default: #f0f0f0;
}
p {
  text-align:justify
}
body {
  /* ... (bleibt gleich) ... */
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
}

.container {
  /* ... (bleibt gleich) ... */
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  /* ... (bleibt gleich) ... */
  margin-bottom: 2rem;
  text-align: center; 
}

.header-logo {
  /* ... (bleibt gleich) ... */
  max-width: 100%;
  height: auto;

  margin-bottom: 1rem;
}

footer {
  /* ... (bleibt gleich) ... */
  margin-bottom: 2rem;
}

/* --- GEÄNDERT: h2 zentriert --- */
h2 {
  margin-bottom: 1.5rem;
  display: block; /* Stellt sicher, dass margin auto funktioniert */
  width: fit-content; /* Passt Breite an Inhalt an */
  margin-left: auto;   /* Zentriert */
  margin-right: auto; /* Zentriert */
  padding: 0.5rem 1.25rem;
  background-color: var(--primary-light);
  border-radius: 99px; /* Runde Ecken */
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
}

h3 {
  /* ... (bleibt gleich) ... */
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 0;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-light);
  border-radius: 99px;
  display: inline-block;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 24px; /* --- GEÄNDERT: Runder --- */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

label {
  /* ... (bleibt gleich) ... */
  font-weight: bold;
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.form-row {
  /* ... (bleibt gleich) ... */
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}
.form-group {
  /* ... (bleibt gleich) ... */
  flex: 1;
  min-width: 150px;
}
.col-half {
  /* ... (bleibt gleich) ... */
  flex-basis: calc(50% - 0.75rem);
}
.vertical-center {
  /* ... (bleibt gleich) ... */
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.vertical-center label {
  /* ... (bleibt gleich) ... */
  margin-top: 0;
  font-weight: normal;
}


input[type="text"],
input[type="email"],
input[type="number"],
select {
  width: 100%;
  padding: 0.75rem 1.25rem; /* Etwas mehr horizontales Padding */
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 99px; /* --- GEÄNDERT: Runder --- */
  box-sizing: border-box;
}

input[type="checkbox"],
input[type="radio"] {
  /* ... (bleibt gleich) ... */
  margin-right: 0.5rem;
  transform: scale(1.1);
}

/* --- GEÄNDERT: Button größer & runder --- */
button, .btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.9rem 2rem; /* Größer */
  font-size: 1.1rem;   /* Größer */
  font-weight: bold;
  border-radius: 99px; /* Runder */
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

button:hover, .btn:hover {
  /* ... (bleibt gleich) ... */
  background: var(--secondary);
}

button:disabled {
  /* ... (bleibt gleich) ... */
  background: #ccc;
  cursor: not-allowed;
}

/* --- NEU: Submit-Button zentrieren --- */
form button[type="submit"] {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem; /* Mehr Abstand nach oben */
}

ul {
  /* ... (bleibt gleich) ... */
  list-style: none;
  padding-left: 0;
}

li {
  /* ... (bleibt gleich) ... */
  margin-bottom: 0.5rem;
}

footer {
  /* ... (bleibt gleich) ... */
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  margin-top: 4rem;
}

.notice {
  background: var(--info);
  color: white;
  padding: 1rem;
  border-radius: 24px; /* --- GEÄNDERT: Runder --- */
  margin-bottom: 1rem;
}

.alert {
  background: var(--danger);
  color: white;
  padding: 1rem;
  border-radius: 24px; /* --- GEÄNDERT: Runder --- */
  margin-bottom: 1rem;
}

.hidden {
  /* ... (bleibt gleich) ... */
  display: none;
}

/* --- GEÄNDERT: Deadline-Box neutraler --- */
.deadline-notice {
  font-size: 1rem; /* Nicht mehr so groß */
  font-weight: bold;
  color: var(--secondary); /* Dunkelblau statt rot */
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #f0f0f0; /* Neutrales Grau */
  border: 1px solid #ddd;
  border-radius: 99px; /* --- GEÄNDERT: Runder --- */
}

.slot-container {
  /* ... (bleibt gleich) ... */
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (min-width: 600px) {
  .slot-container {
    grid-template-columns: 1fr 1fr;
  }
}

.hidden-radio {
  /* ... (bleibt gleich) ... */
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.slot-box-label {
  display: block;
  padding: 1.25rem;
  border: 2px solid #ccc;
  border-radius: 24px; /* --- GEÄNDERT: Runder --- */
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0;
  text-align: center;
  font-weight: normal;
}

.slot-box-label .slot-title {
  /* ... (bleibt gleich) ... */
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.slot-box-label .slot-status {
  /* ... (bleibt gleich) ... */
  display: inline-block;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  background: white;
  border: 1px solid #ddd;
}

.hidden-radio:checked + .slot-box-label {
  /* ... (bleibt gleich) ... */
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.hidden-radio:focus + .slot-box-label {
  /* ... (bleibt gleich) ... */
  box-shadow: 0 0 0 3px var(--accent);
  border-color: var(--primary);
}

/* ... (Slot-Status-Farben bleiben gleich) ... */
.slot-box-label.status-default { background-color: var(--status-default); }
.slot-box-label.status-niedrig { background-color: var(--status-niedrig); }
.slot-box-label.status-mittel { background-color: var(--status-mittel); }
.slot-box-label.status-hoch { background-color: var(--status-hoch); }


.pickup-dates-section {
  margin-top: 2rem;
  /* --- NEU: Sorgt für korrekte Höhe im Flex-Layout --- */
  display: flex;
  flex-direction: column;
}

/* --- NEU: Wrapper für Consent-Checkbox --- */
.consent-section {
  margin-top: 2rem;
  padding-left: 1rem; /* Einrückung */
  font-size: 0.9rem;  /* Etwas kleiner, da es viel Text ist */
}
.consent-section label {
  font-weight: normal; /* Normaler Text statt fett */
  margin-top: 0;
}

.card ul {
  /* ... (bleibt gleich) ... */
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  text-align: left;
}

.card li {
  /* ... (bleibt gleich) ... */
  position: static;
  padding-left: 0.25rem;
  margin-bottom: 0.5rem;
}

/* NEU: Zentriert den Inhalt der Abholtermine-Box (register.html) */
.pickup-dates-section {
  text-align: center;
}

.pickup-dates-section ul {
  text-align: center;
  list-style: none; /* Sieht zentriert besser aus */
  padding-left: 0;   /* Entfernt die Standard-Einrückung der Liste */
}

/* NEU: Klasse für komplett zentrierte Inhaltskarten (success.html) */
.card.card-centered {
  text-align: center;
}

.card.card-centered ul {
  text-align: center;
  list-style: none;
  padding-left: 0;
}
