
body {
  font-family: Arial, sans-serif;
  margin: 20;
  padding: 0;
}

header {
  background: #333;
  color: #fff;
  padding: 1px 20px;
}

.mein-button {
      background-color: #444;  /* Hintergrundfarbe */
      color: white;               /* Textfarbe */
      width: 100px;               /* Breite */
      height: 35px;
      padding: 10px 10px;         /* Innenabstand */
      border: none;              /* Kein Rahmen */
      border-radius: 5px;         /* Abgerundete Ecken */
      font-size: 16px;
      cursor: pointer;            /* Hand-Cursor beim Hover */
	}

.mein-button:hover {
      background-color: #2c2c2c;  /* Farbe beim Darüberfahren */
	border: none;
	}

select {
     background-color: #444;  /* Hintergrundfarbe */
      color: white;               /* Textfarbe */
      width: 100px;               /* Breite */
      height: 35px;
      padding: 10px 10px;              /* Innenabstand */
      border: none;              /* Kein Rahmen */
      outline: none;
      border-radius: 5px;         /* Abgerundete Ecken */
      font-size: 16px;
      cursor: pointer;            /* Hand-Cursor beim Hover */
         }
main {
      margin-top: 10px;
      border: 1px solid #ccc;
      padding: 10px;
      min-height: 150px;
	}

.thumbnail-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
        }

        .thumbnail-container img {
            width: auto;
            height: 80px;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .thumbnail-container img:hover {
            transform: scale(1.1);
        }


.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px;
}
.gallery img {
  width: 20%;
  max-width: 150px;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #ccc;
  transition: transform 0.2s;
}
.gallery img:hover {
  transform: scale(1.05);
  border-color: #333;
 }

.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
}
.lightbox .close,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 2em;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
}
.lightbox .close {
  top: 20px;
  right: 30px;
  font-size: 2em;
  transform: none;
}
.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }

@media (max-width: 600px) {
            .gallery img {
	     width: 30%;
	     max-width: none;
             }
}

@media (max-width: 480px) {
            .gallery img {
	     width: 45%;
	     max-width: none;
             }
}


footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 8px;
}