.grid-container {
  position: relative; /* Wichtig: Macht den Container zum Bezugspunkt für das Logo */
  display: grid;
  grid-template-columns: auto 1fr; /* Nur noch 2 Spalten: Label und Wert */
  align-items: center;
  gap: 10px 20px; /* Zeilen- und Spaltenabstand */
  
  /* Optional: Mindestabstand zum rechten Rand, damit der Text nicht unter das Logo läuft */
  padding-right: 120px; /* Wert an die Breite des Logos anpassen */:wq

}

.logo {
  position: absolute; /* Nimmt das Logo aus dem Layout-Fluss */
  top: 0;
  right: 0;
  
  /* Breite des Logos begrenzen, um das Problem zu lösen */
  width: 130px; /* default for mobile */
  height: auto; /* maintain aspect ratio */
}

@media only screen and (min-width: 640px) {
  /* Tablet and desktop */
  .logo {
    width: 300px; /* adjust this as needed */
  }
}

/* Das Overlay, das den Hintergrund abdunkelt */
#spinner-overlay {
  position: fixed; /* Bleibt an Ort und Stelle, auch beim Scrollen */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Schwarzer Hintergrund mit 60% Transparenz */
  z-index: 9998; /* Stellt sicher, dass es über allem außer dem Spinner liegt */
  display: none; /* Standardmäßig ausgeblendet */
  justify-content: center;
  align-items: center;
}

/* Der Spinner selbst */
.spinner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 8px solid #030303; /* Heller Rand */
  border-top: 8px solid #fd8800; /* Blaue Farbe (Google Blau) */
  border-bottom: 8px solid #fd8800; /* Grüne Farbe (Google Grün) */
  animation: spin 1.5s linear infinite; /* Die Animation */
  z-index: 9999;
}

/* Die Keyframe-Animation für die Drehung und den Farbwechsel */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    border-top-color: #fd8800; /* Gelb (Google Gelb) */
    border-bottom-color: #fd8800; /* Rot (Google Rot) */
  }
  100% {
    transform: rotate(360deg);
  }
}
