
/* Boîte principale */
.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  color: #222;
  padding: 2em;
  max-width: 30%;
  width: 30%;
  font-size: 0.8em;
  background-color: $white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  display: none; /* cachée par défaut, affichée par JS */
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

/* Texte et lien */
.cookie-banner p {
  margin: 0 0 15px 0;
  font-size: 14px;
}

.cookie-banner a {
  color: #2196f3;
  text-decoration: underline;
}

/* Conteneur des boutons */
.cookie-buttons {
  display: flex;
  justify-content: left;
  gap: 10px;
  flex-wrap: wrap;
}

/* Boutons génériques */
.cookie-banner .btn {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Couleurs des boutons */
.btn-accept {
  background-color: $lightBlue;
  color: #fff;
}

.btn-accept:hover {
  background-color: $darkGrey;
}

.btn-reject {
  background-color: $red;
  color: #fff;
}

.btn-reject:hover {
  background-color: $black;
}

.btn-edit {
  background-color: $lightBlue;
  color: #fff;
}

.btn-edit:hover {
  background-color: #1e88e5;
}

/* Responsive */
@media (max-width: 500px) {
  .cookie-banner {
    bottom: 10px;
    padding: 15px;
  }
  .cookie-banner p {
    font-size: 13px;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }
}