/* Spezifische Stile für die Galerie-Seite */
.gallery-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #e3b750;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.gallery-page header {
  width: 100%;
  box-sizing: border-box;
}

.gallery-page .main-container {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 20px;
}

.gallery-page .gallery-content {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  background-color: rgba(227, 183, 80, 0.95);
  border-radius: 10px;
  box-sizing: border-box;
}

.gallery-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-page .gallery-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gallery-page .gallery-item img {
  width: 100%;
  height: auto;
}

/* Beispiel-Scrollleistenstil für den Bereich */
.gallery-page .gallery-content::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  display: block;
}

.gallery-page .gallery-content::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 5px;
}

.gallery-page .gallery-content::-webkit-scrollbar-track {
  background-color: #e3b750;
  border-radius: 5px;
}

.gallery-page .gallery-content::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .gallery-page .main-container {
      padding: 10px;
  }

  .gallery-page .gallery-content {
      padding: 10px;
      border-radius: 5px;
  }

  .gallery-page .gallery-grid {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
  }
}