 <script>       
        /* Basis-Stile */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background-color: #343a40;      /* dunkelgrau deiner Seite */
  color: #f5f5f5;                 /* helles Grau */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  font-size: 0.9rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}
.cookie-banner.show {
  transform: translateY(0);
}

/* Text-Container */
.cookie-banner__text {
  flex: 1 1 60%;
  min-width: 200px;
}

/* Buttons */
.cookie-banner__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 0.5rem;
}
.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
.btn--primary {
  background-color: #007bff;  /* blau passend zu deinen Buttons */
  color: #fff;
}
.btn--secondary {
  background-color: #6c757d;  /* dezentes Grau */
  color: #fff;
}
.btn:hover {
  opacity: 0.9;
}

/* Link im Text */
.cookie-banner a {
  color: #ffc107;  /* gelb für Links */
  text-decoration: underline;
}
        </script>