
  
  .custom-geolocate h4 { /* Texte au dessus de la barre de recherche */
    margin-bottom: 10px;
    font-weight: normal;
    color: #333;
    text-align: center;
  }
  
  #custom-geolocate-address { /* Barre de recherche */
    width: calc(100% - 140px);
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    margin-right: 10px;
  }
  
  #custom-geolocate-submit { /* Bouton d'envoi */
    background-color: #1f3889;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }
  
  #custom-geolocate-submit:hover { /* Hover du bouton d'envoi */
    background-color: #fbbd52;
    transform: translateY(-1px);
  }
  
  #custom-geolocate-map { /* Carte */
    margin-top: 15px;
    height: 500px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .marker-cluster div {
    background-color: #fbbd52;
    color: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
  }
  .leaflet-marker-icon.leaflet-marker-icon {
    stroke: #1f3889;
  }

  #custom-geolocate-filter {
    width: 100%;
    max-width: 300px;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
  }
  
  #custom-geolocate-filter:focus {
    border-color: #0074d9;
    outline: none;
  }

  h3 {
    color: #1f3889 !important;
    text-align: center;
  }
  
  
  