.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #083038;   /* Hintergrundfarbe */
  color: #78C0D0;        /* Textfarbe */
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: sans-serif;
  z-index: 1000;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner a {
  color: #FDF9B8;        /* Linkfarbe */
  text-decoration: underline;
}

.cookie-banner button {
  margin-left: 10px;
  padding: 8px 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

#accept-cookies {
  background: #27ae60;   /* Grün für "Accept" */
  color: white;
}

#decline-cookies {
  background: #c0392b;   /* Rot für "Decline" */
  color: white;
}