/* --- Allgemeines --- */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
  color: #333;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
  font-size: 3rem;
  font-weight: 700;
}

/* --- Such-Container --- */
.such-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.such-container input[type="search"] {
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 250px;
}

.such-container button, 
.button-zurueck {
  padding: 10px 15px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.such-container button:hover,
.button-zurueck:hover {
  background-color: #2980b9;
}

/* --- Adress-Container --- */
.adress-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* --- Adress-Kachel --- */
.adresskachel {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.adresskachel:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.adresskachel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.adresskachel input {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
}

/* --- Speichern Button --- */
.button-speichern {
  margin-top: 10px;
  padding: 10px;
  background-color: #2ecc71;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.button-speichern:hover {
  background-color: #27ae60;
}

/* --- Erfolgsmeldung --- */
.erfolgsmeldung {
  text-align: center;
  font-weight: bold;
  color: #27ae60;
  margin-bottom: 20px;
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .adresskachel {
      width: 90%;
  }

  .such-container input[type="search"] {
      width: 100%;
  }
}
.logo-links {
  height: 65px;        /* Größe des Logos */
  max-width: auto;         /* Proportionen beibehalten */
  object-fit: contain; /* verhindert Verzerrung */
  flex-shrink: 0;      /* Logo darf nicht Container dehnen */
}
footer {
  text-align: center;
  padding: 1rem;
  background-color: #2c3e50;
  color: white;
  margin-top: 2rem;
  ;
}
