/*****************************
*******Banniere Cookies ******
******************************/

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: #2c3e50;
  color: #ecf0f1;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none; /* Cache la bannière par défaut */
  font-family: Arial, sans-serif;
  padding: 20px;
}

.cookie-banner.visible {
  display: block;
}

.cookie-content {
  text-align: center;
}

.cookie-content p {
  font-size: 14px;
  margin: 0 0 15px;
}

.cookie-link {
  color: #3498db;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: space-around;
}

.cookie-button {
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.cookie-button:hover {
  background-color: #2980b9;
}

#reject-cookies {
  background-color: #e74c3c;
}

#reject-cookies:hover {
  background-color: #c0392b;
}





