.consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #dbe4ee;
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #0f172a;
}

/* Solange der Balken sichtbar ist, bleibt unten Platz fuer den Inhalt. */
body:has(> .consent:not([hidden])) {
  padding-bottom: 150px;
}

.consent[hidden] {
  display: none;
}

.consent p {
  margin: 0;
  flex: 1 1 280px;
  color: #334155;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consent button {
  font: inherit;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  border: 1px solid #0f766e;
  background: #0f766e;
  color: #ffffff;
  font-weight: 600;
}

.consent button[data-consent='denied'] {
  background: #ffffff;
  color: #475569;
  border-color: #cbd5e1;
  font-weight: 500;
}
