table {
  border-collapse: collapse;
  width: 100%;
}

table th,
table td {
  border: 2px solid #ffffff;   /* weiße, etwas dickere Linien */
  padding: 0.4rem 0.6rem;
}

table {
  background-color: #202020;
  color: #ffffff;
}

.gallery-wrapper {
  margin: 2rem 0;
}

.gallery-title {
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  cursor: pointer;
}



