/* Suggestions (autocomplete) */
#suggestions {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ddd;
  max-height: 200px;
  overflow-y: auto;
  width: 200px;
  z-index: 1000;
}

#suggestions div {
  padding: 8px;
  cursor: pointer;
}

#suggestions div:hover {
  background-color: #f0f0f0;
}

/* Filtres */
#filters-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

/* Ticks (graduation durée) */
.ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 12px;
  color: #444;
  padding: 0 5px;
}

.ticks span {
  text-align: center;
  flex: 1;
}

/* Carte agrandie */
#map {
  height: 75vh;
  width: 100%;
}

/* Description sous le titre */
.description {
  text-align: center;
  max-width: 800px;
  margin: 30px auto 40px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

/* Footer stylé */
footer {
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  background-color: #222;
  color: #ddd;
  font-size: 0.9em;
  font-family: 'Segoe UI', sans-serif;
}

footer a {
  color: #00bfff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
