/* Minimaler, unaufdringlicher Banner */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #111;
  color: #fff;
  padding: 16px;
  box-shadow: 0 -6px 24px rgba(0,0,0,.25);
  font: 16px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
#cookie-banner a { color: #8ee0ff; text-decoration: underline; }
#cookie-banner .inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
#cookie-banner p { margin: 0; flex: 1 1 480px; }
#cookie-banner .btns { display: flex; gap: 8px; }
#cookie-banner button {
  border: 0; cursor: pointer; padding: 10px 14px; border-radius: 8px;
  font-weight: 600;
}
#cookie-accept {
  background: #22c55e; /* grün */
  color: #062e12;
}
#cookie-more {
  background: #2a2a2a; color: #fff;
}
@media (max-width: 520px) {
  #cookie-banner .inner { flex-direction: column; align-items: stretch; }
  #cookie-banner .btns { width: 100%; }
  #cookie-banner button { flex: 1; }
}
