/* css/map.css */
#map {
  width: 100%;
  height: 600px;
}

.popup-content {
  display: flex;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
  width: 400px;
  margin:10px;
}

.popup-content .popup-text {
  flex: 1;
  padding: 10px;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-content .popup-text h4 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #333;
}

.popup-content .popup-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.popup-content .popup-image {
  flex: 1;
  overflow:hidden;
  position:relative;
}

.popup-content .popup-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* CSS pour le conteneur de la carte */
.globe-block {
  width: 100%;
  height: 600px;
}

/* CSS pour le bandeau de miniatures */
.thumbnail-bar {
  width: 100%;
  display: flex;
  overflow-x: auto;
  padding: 10px 0 10px 10px;
  background: #dee4e9;
  box-sizing: border-box;
}

.thumbnail-item {
  margin-right: 10px;
  cursor: pointer;
}

/* Si besoin, ajustez les styles des images contenues dans le HTML injecté */
.thumbnail-item img {
  display: block;
}
