.gruppen-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px;
}

.gruppe {
  border: 3px solid #006b3a;
  border-radius: 14px;
  padding: 20px;
  background: #f7fcf8;
}

.gruppe h2 {
  margin: 0 0 16px;
  text-align: center;
  font-size: 18px;
  color: #005a32;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #f4fbf6;
}

.paarungen {
  margin-bottom: 22px;   /* Abstand zwischen den beiden Tabellen */
}

th,
td {
  border: 1px solid #b8d6c3;
  padding: 10px 8px;
  font-size: 15px;
}

th {
  font-weight: bold;
  text-align: center;
  background: #d8efe0;
  color: #005a32;
}

.paarungen tr:nth-child(odd) td,
.tabelle tbody tr:nth-child(odd) td,
.ko-tabelle tbody tr:nth-child(odd) td {
  background: #eef8f1;
}

.paarungen tr:nth-child(even) td,
.tabelle tbody tr:nth-child(even) td,
.ko-tabelle tbody tr:nth-child(even) td {
  background: #ffffff;
}

td:nth-child(2),
td:nth-child(4) {
  text-align: center;
}

.paarungen td:nth-child(1),
.paarungen td:nth-child(3) {
  width: 35%;
}

.paarungen td:nth-child(2) {
  width: 10%;
}

.paarungen td:nth-child(4) {
  width: 20%;
}

.tabelle th:nth-child(1),
.tabelle td:nth-child(1) {
  width: 18%;
}

.tabelle th:nth-child(2),
.tabelle td:nth-child(2) {
  width: 42%;
}

.tabelle th:nth-child(3),
.tabelle td:nth-child(3),
.tabelle th:nth-child(4),
.tabelle td:nth-child(4) {
  width: 20%;
}

/* Handy */
@media (max-width: 750px) {
  body {
    padding: 12px;
  }

  .gruppen-layout {
    grid-template-columns: 1fr;
  }

  .gruppe {
    padding: 14px;
  }

  th,
  td {
    padding: 8px 6px;
    font-size: 14px;
  }
}

.ko-runde {
  border: 3px solid #006b3a;
  border-radius: 20px;
  padding: 26px;
  background: #f7fcf8;
  margin-bottom: 25px;
}

.ko-tabelle {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.ko-tabelle th,
.ko-tabelle td {
    border: 1px solid #c9c9c9;
    padding: 14px 16px;
}

.ko-tabelle th {
    text-align: center;
    font-weight: bold;
}

.ko-tabelle td:nth-child(3) {
    text-align: center;
}

/* Spaltenbreiten */

.ko-tabelle th:nth-child(1),
.ko-tabelle td:nth-child(1) {
    width: 12%;
}

.ko-tabelle th:nth-child(2),
.ko-tabelle td:nth-child(2) {
    width: 30%;
}

.ko-tabelle th:nth-child(3),
.ko-tabelle td:nth-child(3) {
    width: 6%;
}

.ko-tabelle th:nth-child(4),
.ko-tabelle td:nth-child(4) {
    width: 30%;
}

.ko-tabelle th:nth-child(5),
.ko-tabelle td:nth-child(5) {
    width: 15%;
}

@media (max-width: 750px) {

    .ko-runde {
        padding: 12px;
        overflow-x: auto;
    }

    .ko-tabelle {
        min-width: 650px;
    }
}
