  body {
        background: rgb(0,75,147);
        font-family: 'Dosis', sans-serif;
        margin: 0;
        padding: 0;
        overflow-x: hidden; /* Verhindert horizontales Scrollen */
      }

  
/* Container für Home und Gewinne abholen Button */
/* Container für Home und Gewinne abholen Button */
#button-container {
  position: absolute;
  top: 20px; /* Abstand vom oberen Rand */
  width: 100%; /* Buttons horizontal zentrieren */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Abstand zwischen den Buttons */
  z-index: 10; /* Über dem SVG */
}

/* Stil für den Home-Button */
#home-button {
  background-color: #007bff;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
}

/* Stil für den Gewinne abholen-Button */
#gewinn-button {
  background-color: #ffc107;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
}

/* Stil für das Eingabefeld und Button unten */
#nummerneingabe {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px; /* Abstand zwischen Eingabefeld und Button */
}

/* Eingabefeld Stil */
#nummerneingabe input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Stil für Gewinn suchen Button */
#nummerneingabe button {
  background-color: #28a745;
  color: white;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 5px;
  border: none;
}



      /* SVG-Bild soll die volle Breite ausnutzen */
      svg {
        display: block;
        margin: 0 auto;
        width: 100vw; /* Volle Fensterbreite */
        height: auto;
        max-height: 100vh; /* Maximal die Höhe des Bildschirms */
      }

      /* Rote, fette Nummern auf den Türchen, rechts unten */
      text {
        font-size: 24px;
        font-weight: bold;
        fill: red;
      }

      /* Modal styles */
      .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.4);
      }

      .modal-content {
        background-color: #fefefe;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 600px;
      }

      /* Responsive Anpassungen */
      @media (max-width: 768px) {
        #nummerneingabe-container {
          flex-direction: column;
        }

        #nummerneingabe-container input {
          margin: 10px 0;
        }

        svg {
          width: 100%;
        }
      }

	  .hoverable {
  		 fill: rgba(0, 128, 128, 0); /* Unsichtbar */
 		 transition: fill 0.3s ease; /* Sanfter Übergang beim Hover */
      }

     .hoverable:hover {
       fill: rgba(0, 128, 128, 0.7); /* Halbtransparentes Grau beim Hover */
     }


