body {
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h1 {
  margin-bottom: 1.5rem;
}

.table-wrap {
  overflow-x: auto;
  width: 100%;
}

table {
  width: 100%;
  min-width: 30rem;
  border-collapse: collapse;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

th,
td {
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}

th:nth-child(1),
td:nth-child(1) {
  min-width: 8rem;
}

th:nth-child(2),
td:nth-child(2) {
  min-width: 12rem;
}

th:nth-child(3),
td:nth-child(3) {
  min-width: 10rem;
}

th {
  background: #333;
  color: #fff;
  font-weight: 600;
}

tr:nth-child(even) {
  background: #f9f9f9;
}

tr:hover {
  background: #f0f0f0;
}

td:first-child {
  white-space: nowrap;
}

.readmore {
  overflow: hidden;
  max-height: 7.5em; /* Fallback: ~4-5 Zeilen */
  position: relative;
}

@supports (-webkit-line-clamp: 1) {
  .readmore {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    max-height: none;
  }
}

.readmore.is-expanded {
  max-height: none;
  display: block;
}

@supports (-webkit-line-clamp: 1) {
  .readmore.is-expanded {
    line-clamp: unset;
    -webkit-line-clamp: unset;
    display: block;
  }
}

.readmore-toggle {
  margin-top: 0.25rem;
  padding: 0;
  border: 0;
  background: none;
  color: #0b5fff;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

.readmore-toggle:focus-visible {
  outline: 2px solid #0b5fff;
  outline-offset: 2px;
}

.footer-note {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: #555;
}
