/* Haupttitel */
.main-title {
  font-size: 2.5em;
  text-align: center;
  margin-top: 2rem;
}

.sub-title {
  font-size: 1.5em;
  text-align: center;
  margin-top: 2rem;
}

/* Grid für Schaltflächen */
.button-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* Button Box */
.button-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00549F; /* ETH-Blau */
  color: #FFFFFF !important; /* Reinweiß + Wichtigkeit */
  padding: 1.5rem;
  border-radius: 12px;
  text-decoration: none !important;
  font-size: 1.25em;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}

/* Sicherstellen, dass kein Link-Status die Farbe verändert */
.button-box:link,
.button-box:visited,
.button-box:hover,
.button-box:active {
  color: #FFFFFF !important;
  text-decoration: none;
}

.button-box:hover {
  background-color: #0077C8; /* Hellere ETH-Blauton fürs Hover */
  color: #FFFFFF;
  transform: scale(1.03);
}

/* Zusatz für unterschiedliche Schriftgrößen */
.box-title {
  font-size: 1.0em;
  display: block;
  line-height: 1.2;
}

.box-number {
  font-size: 0.75em;
  display: block;
  line-height: 1;
}
