/* Stil für das Cookie-Infofenster */
.cookie-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #333;
  padding: 20px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 700px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-container.show {
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

p {
  margin-right: 20px; /* Fügt Abstand zwischen dem Text und dem Button hinzu */
}

.cookie-btn {
  background-color: black;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 0px;
  cursor: pointer;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; /* Stellt sicher, dass der Text im Button zentriert ist */
}


.cookie-btn:hover {
  background-color: #333;
}
