.benutzerbilder-abschnitt {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.benutzerbilder-titel {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.user-bilder-galerie {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.bild-wrapper {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: transform 0.2s ease;
}

.bild-wrapper img,
.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}

.bild-wrapper:hover {
  transform: scale(1.03);
}

.csv-download-wrapper {
  text-align: right;
  margin-bottom: 20px;
  padding-left: 20px;
}

.csv-download-button {
  display: inline-block;
  padding: 2px 6px;
  font-size: 11px;
  line-height: 1.2;
  border: 1px solid #ccc;
  color: #333;
  background-color: #f2f2f2;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.csv-download-button:hover {
  background-color: #eee;
  border-color: #999;
  color: #000;
}