@charset "utf-8";
/* CSS Document */

#consent-banner.consent-hidden { display: none; }
#consent-banner {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 99999; display: grid; place-items: center; padding: 1rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
#consent-banner .consent-card {
  background: #fff; color: #222; max-width: 640px; width: 100%; padding: 1rem 1.25rem;
  border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
#consent-banner h3 { margin: 0 0 .5rem; font-size: 1.25rem; }
#consent-banner p { margin: 0 0 .75rem; line-height: 1.4; }
#consent-banner .consent-switches { display: grid; gap: .5rem; margin: .75rem 0; }
#consent-banner label { display: flex; gap: .5rem; align-items: center; }
#consent-banner .consent-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
#consent-banner button {
  border: 0; padding: .55rem .9rem; border-radius: 10px; cursor: pointer;
}
#consent-accept-all { background: #22bb66; color: #fff; }
#consent-reject-all { background: #ddd; color: #222; }
#consent-save { background: #0a7ca7; color: #fff; }
#consent-banner .consent-note { font-size: .9rem; color: #444; }
