/* Bannière de cookies */
#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #f4f4f4; /* Fond clair */
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2); /* Ombre légère */
  z-index: 9999;
  padding: 20px;
}

.cookie-banner-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cookie-banner-logo {
  max-width: 150px; /* Logo plus grand */
  margin-bottom: 10px;
}

.cookie-banner-content h2 {
  font-size: 18px; /* Taille du titre */
  margin-bottom: 10px;
}

.cookie-banner-content p {
  font-size: 14px; /* Taille du texte */
  margin-bottom: 20px;
}

/* Boutons de la bannière */
.cookie-banner-buttons button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

#accept-all {
  background: #4caf50; /* Vert */
  color: white;
}

#reject-all {
  background: #f44336; /* Rouge */
  color: white;
}

#privacy-settings {
  background: #2196f3; /* Bleu */
  color: white;
}

/* Modale */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  z-index: 2000;
}

.modal-content {
  position: relative;
  margin: 10% auto;
  padding: 20px;
  background-color: #fff; /* Fond blanc */
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  text-align: left;
}

.modal-open #cookie-banner {
  display: none;
}

/* Modale */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  z-index: 10000; /* S'assure que la modale est devant la bannière */
font-size: 14px;
}

.modal-buttons {
  margin-top: 20px;
  text-align: right;
}

.modal-buttons button {
  margin-left: 10px;
  background: #2196f3; /* Couleur par défaut des boutons de la modale */
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.modal-buttons button:hover {
  opacity: 0.9;
}

