/* Réinitialisation de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Style global */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #f0f4f8, #d9e2ec);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* Carte */
#map {
  width: 100%;
  max-width: 800px;
  height: 700px;
  background-color: #e0e0e0; /* Couleur de fond temporaire */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Conteneur de boutons */
#containerBoutons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Boutons */
#containerBoutons button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  background-color: #007BFF;
  color: white;
  transition: background-color 0.3s ease;
}

#containerBoutons button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 600px) {
  #map {
    height: 400px;
  }

  #containerBoutons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  #containerBoutons button {
    width: 100%;
    font-size: 1rem;
  }
}
