/* AILinux Consent-UI Optimierungen */

/* Akzeptieren-Button hervorheben */
.cmplz-cookiebanner .cmplz-buttons .cmplz-accept,
.cmplz-cookiebanner .cmplz-btn-accept {
  font-weight: 600;
}

/* Einheitliche Button-Gestaltung */
.cmplz-cookiebanner .cmplz-btn,
.cmplz-cookiebanner .cmplz-deny,
.cmplz-cookiebanner .cmplz-view-preferences {
  border-radius: 8px;
  padding: .55rem .9rem;
}

/* Dezenter Backdrop-Blur */
.cmplz-cookiebanner {
  backdrop-filter: blur(6px);
}

/* Barrierefreie Link-Darstellung */
.cmplz-cookiebanner a {
  text-decoration: underline;
  text-underline-offset: .15em;
}

/* Footer Legal Links */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.footer-legal-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 640px) {
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
