/* Äußerer Tabellenrahmen */
.tabelle-rahmen {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 0px solid #ccc;
}

/* Kopfzeile und Datenzeilen */
.tabelle-kopf,
.tabelle-zeile {
  display: flex;
  border-bottom: 1px solid #000;
}

.tabelle-kopf,
.text-outline  {
  background-color: #f4f4f4;
  font-weight: bold;
  color: #ffffff; /* Farbe des Text-Inneren */
 
}

/* Standard-Zelle: Verteilt den Platz gleichmäßig */
.zelle {
  flex: 1;
  padding: 12px;
  box-sizing: border-box;
}

/* Verschachtelter Flex-Container in einer Zelle */
.verschachtelter-container {
  display: flex;
  gap: 10px;
  background-color: #e9ecef;
  padding: 5px;
  border-radius: 4px;
}

.zelle-sub {
  flex: 1;
  padding: 5px;
  background-color: #8d8d8d;
  border: 1px solid #e2e2e2;
font-weight: normal;
  font-size: 14px;
min-widht: 100px;  
overflow: hidden;  
}

.zelle-sub1 {
  flex: 1;
  padding: 5px;
  background-color: #e2e2e2;
  border: 1px solid #e2e2e2;
font-weight: normal;
  font-size: 11px;
min-widht: 100px;  
overflow: hidden;  
}

.zelle-sub2 {
  flex: 1;
  padding: 5px;
  background-color: #fff;
  border: 1px solid #e2e2e2;
 font-weight: normal;
font-size: 11px;
min-widht: 100px;  
overflow: hidden;
}

.zelle-sub3 {
  flex: 1;
  padding: 5px;
  background-color: #cccccc;
  border: 1px solid #e2e2e2;
font-weight: normal;
font-size: 11px;
min-widht: 100px;  
overflow: hidden;  
}

blockquote {
  position: relative;
  background: #eaeaea; /* Dark background */
  color: #000000;
  padding: 25px;
  border-radius: 12px 12px 12px 0; /* Creates the speech bubble tip shape */
  margin: 10px 0 25px 0;
}

/* Optional bubble indicator pointing down */
blockquote::after {
  content: "alle Modelle";
  position: absolute;
  bottom: +20px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #ff0000 transparent transparent transparent;
}

blockquote p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
}

blockquote + cite {
  display: block;
  margin-top: -20px; /* Aligns author nicely underneath the bubble tip */
  margin-left: 25px;
  font-size: 11px;
  color: #7289da;
  font-weight: bold;
}









