/* Grundfarben: Hintergrund leicht (#F5F7FB), Text dunkel */
.cookiebar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 9999;
  background: #F5F7FB; color: #0f1f2a; border-top: 1px solid #dfe5ef;
  box-shadow: 0 -6px 24px rgba(0,0,0,.06);
  font: 14px/1.45 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.cookiebar__inner {
  margin: 0 auto; max-width: 980px; padding: 14px 16px; display: grid; gap: 10px;
}
.cookiebar__text { font-size: 14px; }
.cookiebar__settings { padding: 8px 10px; background: #fff; border: 1px solid #e6ebf2; border-radius: 8px; }
.cookiebar__option { display: flex; align-items: center; gap: 8px; font-size: 14px; }

.cookiebar__actions { display: flex; gap: 8px; justify-content: flex-end; }
.cookiebar__btn {
  appearance: none; border: 1px solid #ccd6e6; background: #fff; color: #0f1f2a;
  padding: 8px 12px; border-radius: 10px; cursor: pointer; font-weight: 600;
}
.cookiebar__btn:hover { filter: brightness(0.98); }
.cookiebar__btn--accept {
  background: #0f1f2a; color: #fff; border-color: #0f1f2a;
}
.cookiebar__settings-link {
  appearance: none; background: none; border: 0; color: #0f4ea6; text-decoration: underline; cursor: pointer;
  font-weight: 600; padding: 0 2px;
}

/* Kleinere Screens */
@media (max-width: 520px) {
  .cookiebar__actions { flex-direction: column; align-items: stretch; }
}
