/* Consent modal styles */
.c360-consent-overlay{
  position:fixed; inset:0; z-index:2147483646;
  display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}
.c360-consent-modal{
  width: min(980px, 94vw); max-width:980px;
  background:#fff; color:#111; border-radius:12px; padding:20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
.c360-consent-title{ font-size:20px; font-weight:700; margin:0 0 8px; }
.c360-consent-body{ font-size:15px; color:#333; margin-bottom:14px; }
.c360-consent-actions{ display:flex; gap:10px; justify-content:flex-end; align-items:center; margin-top:8px; }
.c360-btn{ padding:.6rem .9rem; border-radius:999px; font-weight:700; cursor:pointer; border:0; }
.c360-btn-primary{ background:#0d6efd; color:#fff; }
.c360-btn-muted{ background:#f1f3f5; color:#111; border:1px solid #e6e9ee; }
.c360-consent-policy{ font-size:13px; color:#6c757d; margin-top:10px; text-align:left; }
.c360-consent-require{ color:#d63384; font-weight:700; margin-bottom:8px; }
.c360-consent-blocker{ position:fixed; inset:0; z-index:2147483645; background:rgba(255,255,255,0.6); pointer-events:none; }
@media (prefers-color-scheme: dark){
  .c360-consent-modal{ background:#0b1220; color:#e6eef8; }
  .c360-btn-muted{ background:#15202b; color:#e6eef8; border-color:#233044; }
  .c360-consent-body{ color:#cfe6ff; }
  .c360-consent-policy{ color:#9fb7d0; }
}
