/* DSGVO: Cookie-/Einwilligungsleiste */
html:has(#cookie-consent-banner) body {
  padding-bottom: 6rem;
}

#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  padding: 1rem 1.25rem;
  background: #2b2b2b;
  color: #f0f0f0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  border-top: 1px solid #444;
}

#cookie-consent-banner .cookie-consent-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  justify-content: space-between;
}

#cookie-consent-banner .cookie-consent-text {
  flex: 1 1 280px;
  margin: 0;
}

#cookie-consent-banner .cookie-consent-text a {
  color: #9ecfff;
  text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-text a:hover,
#cookie-consent-banner .cookie-consent-text a:focus {
  color: #cce8ff;
}

#cookie-consent-banner .cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}

#cookie-consent-banner button {
  cursor: pointer;
  font-size: 13px;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  border: 1px solid #666;
  background: #444;
  color: #fff;
}

#cookie-consent-banner button:hover,
#cookie-consent-banner button:focus {
  background: #555;
  outline: 2px solid #9ecfff;
  outline-offset: 2px;
}

#cookie-consent-banner button.cookie-consent-btn-primary {
  background: #5a8fc7;
  border-color: #4a7ab0;
}

#cookie-consent-banner button.cookie-consent-btn-primary:hover,
#cookie-consent-banner button.cookie-consent-btn-primary:focus {
  background: #6a9fd7;
}

@media (max-width: 600px) {
  #cookie-consent-banner .cookie-consent-actions {
    width: 100%;
    justify-content: stretch;
  }
  #cookie-consent-banner button {
    flex: 1 1 auto;
  }
}
