/* common.css */

/* Styles personnalisés */
.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d0006f;
    margin-bottom: 1rem;
  }
  
  .slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
  }
  
  .slider-container > div {
    flex: none;
    scroll-snap-align: start;
    min-width: 250px;
  }
  
  /* Dimensions de la carte Leaflet */
  #map {
    width: 100%;
    height: 400px;
  }
  