@charset "UTF-8";
/* --- Google Maps Container --- */
.google-maps-container {
  width: 100%;
  height: 450px; /* Wichtig: Feste Höhe definieren */
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #f8f9fa;
}
.google-maps-container iframe {
  width: 100%;
  height: 100%;
}

.google-maps-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  padding: 20px;
  box-sizing: border-box;
}
.google-maps-placeholder p {
  margin-bottom: 15px;
  color: #6c757d;
  text-align: center;
  font-family: sans-serif;
}
.google-maps-placeholder .btn {
  padding: 10px 20px;
  background: #084d7b;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
  width: 200px;
}
.google-maps-placeholder .btn:hover {
  background: #bd440c;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px; /* Besser rechts unten oder zentriert */
  left: auto; /* Override falls nötig */
  width: 90%;
  max-width: 400px;
  background: white; /* Weißer Hintergrund statt f8f9fa für besseren Kontrast */
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  font-family: sans-serif;
}
.cookie-banner__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.cookie-banner__header h2 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}
.cookie-banner__body {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 0.9rem;
}
.cookie-banner__body p {
  margin: 0;
  color: #495057;
}
.cookie-banner__body a {
  color: #084d7b;
  text-decoration: underline;
}
.cookie-banner__footer {
  display: flex;
  justify-content: flex-end; /* Buttons rechtsbündig */
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  border: 1px solid #ccc;
  background: #f8f9fa;
  color: #333;
  font-size: 0.9rem;
}
.cookie-banner__btn:hover {
  background: #e2e6ea;
}
.cookie-banner__btn--primary {
  background: #084d7b;
  color: white;
  border-color: #084d7b;
}
.cookie-banner__btn--primary:hover {
  background: rgb(4.8854961832, 47.0229007634, 75.1145038168);
}

/* Media Query für Mobile */
@media (max-width: 480px) {
  .cookie-banner {
    left: 20px;
    right: 20px;
    width: auto;
  }
  .cookie-banner__footer {
    flex-direction: column;
  }
  .cookie-banner__btn {
    width: 100%;
  }
}/*# sourceMappingURL=cookie-banner.css.map */