 /* Container & Boxen */
    .container {
      max-width: 600px;  /* wie die Box */
      margin: 0 auto;
      padding: 20px;
    }

    .center {
      text-align: center;
    }

    .center h1, .center h2 {
      margin: 0 0 10px 0;
      word-break: break-word;
      line-height: 1.2;
    }

    .left p {
      text-align: left;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .boxed {
      background: rgba(0,0,0,0.15);
      padding: 15px;
      border-radius: 6px;
      margin: 20px auto 0 auto;
      max-width: 600px;
      text-align: center;
    }

    .table-box {
      background: #222; /* dunkler Hintergrund für Tabelle */
      padding: 20px;
      text-align: center;
    }

    /* Tabelle */
    .table-container {
      width: 100%;
      overflow-x: hidden; /* kein horizontaler Scrollbalken */
    }

    table.auto-table {
      width: 100%;
      border-collapse: collapse;
      background-color: #333;
      color: #fff;
    }

    table.auto-table th,
    table.auto-table td {
      padding: 10px;
      border: 1px solid #555;
      text-align: center;
      word-break: break-word;
    }

    table.auto-table th {
      background-color: #444;
      font-weight: bold;
    }

    /* Alternierende Zeilen */
    table.auto-table tbody tr:nth-child(even) {
      background-color: #2b2b2b;
    }

    /* Responsive für Mobil */
    @media screen and (max-width: 768px) {
      table.auto-table, 
      table.auto-table thead, 
      table.auto-table tbody, 
      table.auto-table th, 
      table.auto-table td, 
      table.auto-table tr {
        display: block;
      }

      table.auto-table thead tr {
        display: none;
      }

      table.auto-table tr {
        margin-bottom: 15px;
        border: 1px solid #444;
        padding: 10px;
        background: #333;
        border-radius: 6px;
      }

      table.auto-table td {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5px 10px;
      }

      table.auto-table td::before {
        content: attr(data-label);
        font-weight: bold;
        margin-bottom: 5px;
        width: 100%;
      }

      table.auto-table td br {
        display: block;
      }
    }