/* Consent banner styles — loaded by /consent-banner.js as an external
 * stylesheet. Inline <style> injection via JS gets blocked by CSP
 * style-src after the unsafe-inline removal (audit P1-17 2026-05-03), so
 * we ship the CSS as a regular file allowed by `style-src 'self'`. */
#wauldo-consent-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(20, 20, 22, 0.96);
  color: #f3f4f6;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  z-index: 9999;
  backdrop-filter: blur(8px);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
#wauldo-consent-banner .wcb-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
}
@media (min-width: 640px) {
  #wauldo-consent-banner .wcb-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}
#wauldo-consent-banner .wcb-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
#wauldo-consent-banner .wcb-text span {
  display: block;
  color: #cbd5e1;
  font-size: 13px;
}
#wauldo-consent-banner .wcb-text a {
  color: #93c5fd;
  text-decoration: underline;
}
#wauldo-consent-banner .wcb-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
#wauldo-consent-banner .wcb-btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #f3f4f6;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
}
#wauldo-consent-banner .wcb-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
#wauldo-consent-banner .wcb-btn.wcb-accept {
  background: #f3f4f6;
  color: #0a0a0a;
  border-color: #f3f4f6;
}
#wauldo-consent-banner .wcb-btn.wcb-accept:hover {
  background: #fff;
}
