/* Stil für den verschwommenen Hintergrund */
.blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: none; /* wird per JS eingeblendet */
  pointer-events: all; /* Klicks blockieren */
}


/* Cookie-Banner Styling */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #000000;
  color: #fff;
  padding: 10px;
  text-align: center;
  z-index: 10000;
  button{
    margin-left: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px 10px;
    cursor: pointer;
    background-color: #fff;
    color: #000000;
    border: none;
    border-radius: 5px;
  }
  button:hover {
    background-color: #e0e0e0;
  }
  a{
    color: white;
    display: block;
  }
}

