  /* Focus + style existant */
  .search-group:focus-within {
    border-radius: 20px;
    background-color: white;
    border: 1px solid rgb(255, 77, 0);
  }

  .search-group {
    border: 1px solid #d2d2d2;
    border-radius: 20px;
    overflow: hidden;
    background-color: white;
    padding: 2px;
}

.search-input {
    border: none;
    padding-right: 10px; /* place pour le bouton */

    border-radius: 10px;
  }

  .search-input:focus {
    box-shadow: none;
    background: transparent;
  }

  .search-addon:focus {
    box-shadow: none;
  }
  .search-input::placeholder {
    font-size: 0.85rem;
}

.search-addon {
  font-size: 14px;
  color: white;
}

.bi-search {
  border:1px solid rgb(255, 77, 0); 
  padding: 3px 10px; 
  border-radius:10px; 
  background-color:rgb(255, 77, 0);
  font-weight: bold;
}

.bi-search:hover {
  color:rgb(255, 77, 0);
  border:1px solid rgb(255, 77, 0); 
  background-color:white;
}
