.search-bar {
    width: 377px;
    height: 49px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden; /* important pour arrondis propres */
    background-color: transparent 
  }
  
  .search-icon {
    background-color: #f0f0f0; 
    width: 50px; 
    height: 100%; 
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .search-icon img {
    width: 16px;
    height: 16px;
  }
  
  .search-bar input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 10px;
    font-size: 16px;
    font-weight: bold;
    color: black;
    background: transparent;
  }
  
  .search-bar input::placeholder {
    color: black;
    font-weight: bold;
  }
  
  .search-bar button {
    background-color: #007aff; /* bleu vif */
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    font-weight: bold;
    height: 100%;
    border-radius: 0 50px 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }