/* === Basis === */
body {
  background: #e0f7fa; /* Helles Cyan */
  color: #1a1a1a; /* Sehr dunkles Grau für optimalen Kontrast */
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding: 30px;
}

/* === Hauptüberschriften === */
h1 {
  color: #007c91;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #00acc1;
  padding-bottom: 5px;
}
h2, h3 {
  color: #006064;
  font-family: 'Montserrat', sans-serif;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* === Ergebnisboxen === */
.ergebnis-box {
  background: #b2ebf2;
  border-left: 6px solid #0097a7;
  padding: 20px;
  margin: 20px 0;
  border-radius: 6px;
}

/* === Risikobalken (Container & Einzelstufen) === */
.risikobar-container {
  background: #e0f2f1;
  border-radius: 8px;
  margin: 30px 0;
  padding: 20px;
}

.risikobar {
  display: flex;
  height: 24px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

.risikostufe {
  flex: 1;
  transition: background 0.3s ease;
}

.risikostufe.active {
  outline: 3px solid #004d40;
  outline-offset: -3px;
}

/* === Farben für 10 Risiko-Stufen === */
.stufe-1  { background: #2e7d32; }  /* Dunkelgrün – sehr niedrig */
.stufe-2  { background: #388e3c; }
.stufe-3  { background: #66bb6a; }
.stufe-4  { background: #d4e157; }
.stufe-5  { background: #ffee58; }  /* Gelblich – mittleres Risiko */
.stufe-6  { background: #ffca28; }
.stufe-7  { background: #ff9800; }
.stufe-8  { background: #f44336; }
.stufe-9  { background: #d32f2f; }
.stufe-10 { background: #b71c1c; }  /* Tiefrot – Extrem-Risiko */

/* === CTA-Box === */
.cta-box {
  background: #00bcd4;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 40px;
  border-radius: 10px;
  font-size: 18px;
}
.cta-box a {
  color: #004d40;
  font-weight: bold;
  text-decoration: underline;
}

/* === Footer & Hinweisboxen === */
.footer {
  font-size: 13px;
  color: #555;
  margin-top: 50px;
  text-align: center;
}