
/* Minimal styles for consent banner */
#consent-modal { position: fixed; inset: auto 0 0 0; z-index: 9999; }
.mmc-consent { background: #fff; border-top: 1px solid #e5e7eb; box-shadow: 0 -10px 30px rgba(0,0,0,.12); padding: 16px; font: 14px/1.45 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif; }
.mmc-consent__text { max-width: 1100px; margin: 0 auto; }
.mmc-consent__opt { display: block; margin: 8px 0; }
.mmc-consent__actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.mmc-consent__actions button { padding: 8px 12px; border: 1px solid #111827; background: #111827; color: #fff; cursor: pointer; border-radius: 6px; }
.mmc-consent__actions button:nth-child(2) { background: #fff; color: #111827; }
.mmc-consent__actions button:nth-child(3) { background: #fff; color: #111827; }
.mmc-consent__link { display:inline-block; margin-top: 6px; color: #111827; text-decoration: underline; }
@media (prefers-color-scheme: dark){
  .mmc-consent { background: #111; color: #eee; border-top-color: #222; }
  .mmc-consent__actions button { border-color: #eee; }
  .mmc-consent__link { color: #eee; }
}
