body {
    font-family: Arial, sans-serif;
    background-color: #005494; /* Fond bleu */
    color: white; /* Texte en blanc pour contraster */
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}
#sur-titre {
    color: #FFF;
    text-align: center;
    font-family: 'Abhaya Libre', serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px; /* Espacement sous le sous-titre */
}
h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: white;
}
.intro {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}
.map-container {
    position: relative;
    width: 100%;
    height: 80vh;
    margin-top: 20px;
    border: 2px solid white;
    border-radius: 10px;
    overflow: hidden;
}
#map {
    height: 100%;
    width: 100%;
}
.legend {
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: absolute;
    top: 10px;
    left: 55px;
    background-color: rgba(255, 255, 255, 0.9); /* Fond blanc légèrement transparent */
    color: black; /* Texte noir pour contraste */
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}
.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.legend-color-box {
    width: 20px;
    height: 5px;
    margin-right: 8px;
}
.legend-text {
    margin: 0;
    color: black;
}
.skipper-image {
    width: 30px;
    height: auto;
    margin-right: 8px;
    border-radius: 50%; /* Images rondes pour uniformité */
}

.leaflet-marker-icon {
    background: transparent !important;
    border: 0 !important;
}