/* Default Popup */

.mapboxgl-popup-content {
  padding: 15px;
  max-width: 320px;
  max-height: 400px;
  overflow-y: auto;
}

/* Style pour la popup intermédiaire */
.intermediate-popup h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.intermediate-popup .layer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intermediate-popup .layer-item {
  padding: 8px 5px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.intermediate-popup .layer-item:hover {
  background-color: #f0f0f0;
}

.intermediate-popup .layer-item:last-child {
  border-bottom: none;
}

/* Style pour la popup de feature */
.feature-popup h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.feature-popup .feature-properties,
.feature-popup .wms-feature-info {
  max-height: 300px;
  overflow-y: auto;
}

.feature-popup .property {
  margin-bottom: 5px;
  line-height: 1.4;
}

.feature-popup .property-key {
  font-weight: bold;
}

.feature-popup .loading-info {
  font-style: italic;
  color: #666;
  padding: 10px 0;
}

.feature-popup .error-info {
  color: #d9534f;
  padding: 10px 0;
}

.feature-popup hr {
  margin: 10px 0;
  border: 0;
  border-top: 1px dashed #ddd;
}

/* Default Popup */