/* Minimal, accessible styles */
.eccl { position: fixed; left: 0; right: 0; z-index: 99999; font: 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.eccl--bottom { bottom: 0; }
.eccl--top { top: 0; }
.eccl__inner { max-width: 980px; margin: 0 auto; padding: 12px; display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.eccl--light { background: #f7f7f7; color: #111; border-top: 1px solid #e2e2e2; border-bottom: 1px solid #e2e2e2; }
.eccl--dark { background: #111; color: #f7f7f7; }
.eccl__msg a.eccl__link { text-decoration: underline; }
.eccl__actions { display: flex; gap: 8px; align-items: center; }
.eccl__btn { padding: 8px 12px; border-radius: 6px; border: 1px solid transparent; cursor: pointer; }
.eccl__btn--accept { background: #0a7; color: #fff; }
.eccl__btn--reject { background: #eee; color: #111; border-color: #ddd; }
@media (max-width: 640px) { .eccl__inner { grid-template-columns: 1fr; } .eccl__actions { justify-content: flex-end; } }
