.gallery-wrapper {
  position: relative;
  width: 800px;       /* Breite für 8 Bilder */
  margin: 30px auto;
}

.gallery-container {
  overflow: hidden;
  width: 100%;
}

.gallery {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.3s ease;
}

.gallery-item {
  flex: 0 0 auto;
}

.gallery-item img {
  width: 90px;
  height: 90px;
  margin: 5px;
  object-fit: cover;
  display: block;
}

/* Pfeile */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 5px 10px;
}

.arrow.left {
  left: -50px;
}

.arrow.right {
  right: -50px;
}

/* optional: Hover-Effekt */
.arrow:hover {
  background: rgba(0,0,0,0.8);
}
