/* ============================================================
   NUCLEAR FIX - TEXT VISIBILITY ENFORCEMENT
   Erzwingt Sichtbarkeit ALLER eRecht24-Inhalte
   ============================================================ */

/* Layer 1: Wrapper mit maximaler Spezifität */
.legal-erecht24-content.legal-erecht24-content--fixed {
  color: #b8b8c8 !important;
  font-size: 0.92rem !important;
  line-height: 1.8 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Layer 2: ALLE Kinder - überschreibt Browser-Defaults + inline-styles */
.legal-erecht24-content--fixed *,
.legal-erecht24-content--fixed *::before,
.legal-erecht24-content--fixed *::after {
  color: #b8b8c8 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Layer 3: Spezifische Elemente mit eigenen Farben */
.legal-erecht24-content--fixed h1,
.legal-erecht24-content--fixed h2,
.legal-erecht24-content--fixed h3,
.legal-erecht24-content--fixed h4,
.legal-erecht24-content--fixed h5,
.legal-erecht24-content--fixed h6,
.legal-erecht24-content--fixed strong,
.legal-erecht24-content--fixed b {
  color: #e8e8f0 !important;
  font-weight: 600 !important;
}

.legal-erecht24-content--fixed a,
.legal-erecht24-content--fixed a:link,
.legal-erecht24-content--fixed a:visited {
  color: #ff6600 !important;
  text-decoration: underline !important;
}

.legal-erecht24-content--fixed a:hover,
.legal-erecht24-content--fixed a:focus {
  color: #ff9933 !important;
}

.legal-erecht24-content--fixed p,
.legal-erecht24-content--fixed li,
.legal-erecht24-content--fixed td,
.legal-erecht24-content--fixed span,
.legal-erecht24-content--fixed div {
  color: #b8b8c8 !important;
}

/* Span/Links: Inline-Display beibehalten (nicht block) */
.legal-erecht24-content--fixed span,
.legal-erecht24-content--fixed a,
.legal-erecht24-content--fixed strong,
.legal-erecht24-content--fixed b,
.legal-erecht24-content--fixed em,
.legal-erecht24-content--fixed i {
  display: inline !important;
}

/* Listen: list-style wiederherstellen */
.legal-erecht24-content--fixed ul li,
.legal-erecht24-content--fixed ol li {
  display: list-item !important;
}

/* Tabellen: table-display beibehalten */
.legal-erecht24-content--fixed table {
  display: table !important;
}
.legal-erecht24-content--fixed thead {
  display: table-header-group !important;
}
.legal-erecht24-content--fixed tbody {
  display: table-row-group !important;
}
.legal-erecht24-content--fixed tr {
  display: table-row !important;
}
.legal-erecht24-content--fixed td,
.legal-erecht24-content--fixed th {
  display: table-cell !important;
}

/* Ende NUCLEAR FIX */