#cookie-banner {
    position: fixed;
    inset: auto 0 0 0; /* bottom:0; left:0; right:0 */
    background: #222;
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
    z-index: 9999;
  }
  
  #cookie-banner .actions {
    display: inline-flex;
    gap: 0.5rem;
    margin-left: 1rem;
  }
  
  #cookie-banner button {
    border: none;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    cursor: pointer;
  }
  
/* Boutons avec contraste AA/AAA */
#accept-cookies { background: #1b5e20; color: #fff; }   /* contrast ~7.87:1 */
#accept-cookies:hover { background: #124117; }
#decline-cookies { background: #b71c1c; color: #fff; }  /* contrast ~6.57:1 */
#decline-cookies:hover { background: #7f1515; }

/* Focus visible accessible */
#cookie-banner button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
