#beteiligungskalkulator {
  background-color: #fffdf4;
  border: 2px solid #f9d342;
  border-radius: 12px;
  padding: 30px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
}

#beteiligungskalkulator input,
#beteiligungskalkulator button {
  width: 100%;
  padding: 12px;
  margin: 10px 0 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

#beteiligungskalkulator button {
  background-color: #f9d342;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

#beteiligungskalkulator button:hover {
  background-color: #e6c200;
}

#ergebnis {
  margin-top: 20px;
  background-color: #fef9e7;
  padding: 20px;
  border: 1px solid #f9d342;
  border-radius: 8px;
}

#ergebnis p {
  margin: 8px 0;
  font-size: 16px;
}

#ergebnis strong {
  color: #444;
}