.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .filter-label {
    font-weight: bold;
    color: black;
  }
  
 .filter-button {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 4px 19px;
        border: 2px solid #ddd;
        background-color: white;
        border-radius: 999px;
        font-weight: bold;
        color: black;
        cursor: pointer;
        transition: background-color 0.3s, border-color 0.3s;
        height: 50px; /* Hauteur fixe */
        width: auto; /* Largeur automatique */
  }
  
  .filter-button img {
    width: 16px;
    height: 16px;
  }
  
  .filter-button:hover {
    background-color: #DEEBFF; /* Fond bleu pâle au survol */
  }