/* AuthOnce cookie consent banner — 2026-08-25.
   Deliberately plain CSS (not inline styles) so it works under a strict
   CSP style-src with no 'unsafe-inline' needed — see consent-banner.js
   and frontend/public/_headers. */

#authonce-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: sans-serif;
}

#authonce-cookie-banner .authonce-cb-text {
  color: #f1f5f9;
  font-size: 13px;
  line-height: 1.6;
  max-width: 640px;
  flex: 1 1 320px;
}

#authonce-cookie-banner .authonce-cb-text a {
  color: #34d399;
}

#authonce-cookie-banner .authonce-cb-buttons {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

#authonce-cookie-banner button {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #f1f5f9;
}

#authonce-cookie-banner button.authonce-cb-primary {
  border-color: #34d399;
  background: #34d399;
  color: #08120c;
}

#authonce-cookie-prefs-pill {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 99998;
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 6px 12px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
