#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #ffe4b2; /* Couleur crème pour un thème cookie */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .cookie-image img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
  
  .cookie-text {
    flex-grow: 1;
    font-size: 16px;
    color: #333; /* Texte sombre pour une bonne lisibilité */
  }
  
  .cookie-buttons {
    display: flex;
    gap: 10px;
  }
  
  .cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .btn-success {
    background-color: #4caf50; /* Vert pour accepter */
    color: white;
    border: none;
  }
  
  .btn-danger {
    background-color: #f44336; /* Rouge pour refuser */
    color: white;
    border: none;
  }
  