.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  padding: 16px 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  z-index: 9999;
  font-size: 14px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  margin: 0 0 10px;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-buttons button {
  cursor: pointer;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 14px;
  transition: background 0.2s ease;
}

#accept-cookies {
  background: #10b981; /* grün */
  color: white;
}

#accept-cookies:hover {
  background: #059669;
}

#decline-cookies {
  background: #e5e7eb; /* grau */
  color: #000;
}

#decline-cookies:hover {
  background: #d1d5db;
}
