/* location-input.css — Choix de localisation */

/* Conteneur */
.location-input {
  max-width: 500px;
  margin: 1.5rem auto;
  padding: 1rem;
  font-family: system-ui, sans-serif;
  color: #1b1b1b;
  background: #fff;
  border: 1px solid #dce5dd;
  border-radius: 12px;
}

/* Bouton activer/désactiver auto-localisation */
.location-input button {
  width: 100%;
  margin-bottom: 1rem;
  padding: .7rem 1rem;
  border-radius: 10px;
  border: 1px solid #2e7d32;
  background: transparent;
  color: #2e7d32;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.location-input button:hover {
  background: #f3fdf5;
}

/* Bouton actif = localisation automatique activée */
.location-input button.active {
  background: #2e7d32;
  color: #fff;
}
.location-input button.active:hover {
  background: #4caf50;
  border-color: #4caf50;
}

/* Formulaire postal */
.location-input form p {
  margin: 0 0 .5rem;
  font-weight: 600;
  color: #2e7d32;
}
.location-input input {
  width: 100%;
  padding: .6rem .8rem;
  border: 1px solid #dce5dd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.location-input input:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76,175,80,.25);
}
.location-input input:disabled {
  background: #f9faf9;
  color: #9ca3af;
  cursor: not-allowed;
}
