* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

#container {
  display: flex;
  width: 100%;
  height: 100%;
}

#map-container {
  position: relative;
  width: 70%; 
  height: 100%;
}

#map {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.poi {
  position: absolute;
  color: rgba(255, 0, 0, 0);
  font-size: 14rem;
  cursor: pointer;
}

.poi:hover {
  color: rgba(255, 255, 0, 0);
  transform: scale();
}

#details {
  width: 30%; 
  height: 100%;
  background: #1e1e1e;
  color: white;
  padding: 20px;
  overflow-y: auto;
}

#details h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

#details p {
  font-size: 1rem;
  line-height: 1.6;
}

#filtration {
  position: fixed;
  bottom: 10px;
  left: 10px;
  color: white;
  width: 200px;
  background-color: #1e1e1e(0, 0, 0);
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.search-container {
  position: fixed;
  bottom: 10%;
  right: 10%;
  width: 250px;
  background: #f9f9f900;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#search-bar {
  width: 100%;
  padding: 8px;
  color: #1e1e1e;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

#search-results {
  margin-top: 10px;
  max-height: 150px;
  overflow-y: auto;
  border-top: 1px solid #ddd;
  padding-top: 5px;
}

.result-item {
  padding: 5px;
  cursor: pointer;
}

.result-item:hover {
  background: #f0f0f0;
}


.poi.highlight {
  color: yellow; /* Choisissez la couleur que vous préférez */
  font-size: 16rem; /* Ajustez la taille si nécessaire */
  transform: scale(1.2); /* Optionnel, pour agrandir un peu le POI */
}
