.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff; /* fond blanc */
  color: #333; /* texte sombre pour contraste */
  padding: 15px 20px;
  font-size: 14px; /* texte plus petit */
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1); /* léger ombrage */
}

.cookie-content {
  max-width: 1100px;
  margin: auto;
  font-size: x-small;
}
.cookie-content p {

  font-size: 14px;
}
.cookie-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 6px 14px;
  border: none;
  cursor: pointer;
  font-size: 13px; /* boutons plus petits */
  border-radius: 4px;
}

#accept-cookies {
  background: #28a745;
  color: #fff;
}

#reject-cookies {
  background: #6c757d;
  color: #fff;
}

.d-none {
  display: none;
}