/* Vollbild-Banner mit Video-Hintergrund */
#cookie-banner {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: sans-serif;
}

/* Video direkt im Hintergrund */
#cookie-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6; /* leicht abgedunkelt für bessere Lesbarkeit */
  pointer-events: none;
}

/* Cookie-Einstellungs-Modal */
.cookie-modal {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8); /* halbtransparentes Weiß */
  color: #000000;
  color: #000000;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  max-width: 500px;
  width: 90%;
  text-align: left;
}

/* Überschrift */
.cookie-modal h2 {
  margin-top: 0;
  font-size: 1.4em;
}

/* Standardtext */
.cookie-modal p {
  font-size: 0.95em;
  margin-bottom: 1em;
}

/* Checkboxen & Labels */
.cookie-modal label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95em;
  cursor: pointer;
}

.cookie-modal input[type="checkbox"] {
  margin-right: 8px;
  vertical-align: middle;
}

/* Buttons */
.cookie-modal button {
  margin: 8px 4px 0 0;
  padding: 10px 18px;
  background-color: #0055aa;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95em;
  transition: background-color 0.2s ease-in-out;
}

.cookie-modal button:hover {
  background-color: #003f88;
}

/* Responsives Verhalten */
@media (max-width: 480px) {
  .cookie-modal {
    padding: 20px;
  }

  .cookie-modal h2 {
    font-size: 1.2em;
  }

  .cookie-modal button {
    width: 100%;
    margin-top: 10px;
  }
}
