/* Hauptcontainer für die Speisekarte */
.ContainerSpeisekarte {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: min(10rem, 10%);
  height: 100vh; /* Nutzt die volle Bildschirmhöhe */
  box-sizing: border-box;
}

.Speisekarte-Inhalt {
  width: 100%;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%; /* Wichtig: füllt den Container */
}

.Speisekarte-Label {
  margin-bottom: 1rem;
}

/* Der grüne Button im ManuFaktur-Style */
.Speisekarte-Download-Bereich {
  margin-bottom: 2.5rem;
}

.Speisekarte-Button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #0f4c8e;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 128, 96, 0.2);
}

.Speisekarte-Button:hover {
  background-color: #00a078;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 128, 96, 0.3);
}

.Speisekarte-Vorschau {
  flex: 1; /* Das ist der magische Teil: füllt den restlichen vertikalen Platz */
  width: 100%;
  border-radius: 20px;
  overflow: scroll;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  background: #f9f9f9;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .ContainerSpeisekarte {
    height: auto; /* Auf Mobile lieber scrollbar statt starr 90vh */
  }

  .Speisekarte-Vorschau {
    flex: none;
  }

  .Speisekarte-Button {
    width: 100%; /* Button über ganze Breite am Handy */
    box-sizing: border-box;
  }
}
