/* Hier können Sie bei Bedarf Ihre eigenen CSS-Definitionen einfügen. */

#block_1000020 .cd-button {
display: none;
}
#block_1000022 .cd-button {
display: none;
}

/* Textmarker-Effekt für Überschriften (Beispiel für h2 und h3) */
/* Passe die Selektoren (h2, h3) an, je nachdem welche Überschriften du ändern möchtest */

H1, 
h1 { 
  display: inline-block; /* Wichtig: Passt die Breite an den Text an */
  background-color: #82548B; /* DEINE TEXTMARKERFARBE HIER - z.B. Hellgrün */
  color: white !important;  /* Schriftfarbe Weiß - !important kann nötig sein, um YAML-Styles zu überschreiben */
  
 /* Optional: Fügt etwas Innenabstand hinzu, damit der Text nicht direkt am Rand klebt */
  padding-left: 30px; 
  padding-right: 30px;
  padding-top: 2px;
  padding-bottom: 2px;


  /* Stellt sicher, dass der Effekt bei Zeilenumbrüchen erhalten bleibt */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone; 

  border-radius: 10px; /* Optionale abgerundete Ecken */

  /* Bestehende Ränder ggf. zurücksetzen, falls sie stören */
  margin-bottom: 10px; /* Behalte den ursprünglichen unteren Rand bei oder passe ihn an */
  /* margin-top, margin-left, margin-right bei Bedarf anpassen */
}

/* Falls du auch h1 oder h4 stylen möchtest, füge sie zur Liste hinzu: */
/*
h1,
h4 {
  display: inline-block; 
  background-color: #90ee90; 
  color: white !important; 
  padding: 2px 8px; 
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone; 
  border-radius: 3px; 
  margin-bottom: 10px; 
}
*/
