 .misch-tabelle {
    margin: 20px auto;           /* zentriert die Tabelle */
    border: 4px solid #000;      /* Rahmen */
    border-collapse: collapse;   /* saubere Kanten */
    width: 800px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
  }

  .misch-tabelle th,
  .misch-tabelle td {
    border: 1px solid #000;
    padding: 6px;
    text-align: center;
  }

  /* Kopfzeile */
  .misch-tabelle th {
    background-color: #f8f9fb;
    color: #008102;
    font-weight: bold;
    font-style: italic;
  }

  /* zweite Zeile */
  .misch-tabelle .label {
    background-color: #D1E0CB;
    color: #008102;
    font-weight: bold;
    font-style: italic;
  }

  /* Werte-Zeilen */
  .misch-tabelle .werte {
    background-color: #008102;
    color: #E2FF3C;
    font-weight: bold;
    font-style: italic;
  }
  
  /* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Box Hintergrund wie bei dir */
.boxed {
    background: rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 6px;
}

/* Tabelle */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
    color: #ffffff;
}

/* Kopfzeile */
.styled-table th {
    background: rgba(255,255,255,0.15);
    padding: 10px;
    text-align: left;
}

/* Zellen */
.styled-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Alternierende Zeilen – leicht grau */
.styled-table tr:nth-child(even) {
    background: rgba(255,255,255,0.05);
}

.boxed {
    background: rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 10px;   /* Rundere Ecken */
}
