body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #dfdfdf;
    color: #333;
}

#map {
    height: 500px;
    width: 100%;
}

/*Mobile friendly*/
@media (max-width: 768px) {
    #map {
        height: 300px;
    }
    .footer-links {
        flex-wrap: wrap;
    }
    .footer-links li {
        margin: 5px;
    }
}



 /*********************************************** SLIDER **********************************************/ 

.slider-container, .legend {
    margin: 20px auto;
    text-align: center;
}

.range-slider {
    width: 60%;
    margin: 20px auto;
    position: relative;
}

.range-slider__range {
    width: 100%;
    -webkit-appearance: none;
    background: #000000;
    height: 5px;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

.range-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: #f03b20;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

.range-slider__range::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #48c400;
    cursor: pointer;
    border-radius: 50%;
}

.counter {
    text-align: center;
    margin: 20px auto;
    font-size: 1.2em;
    font-weight: bold;
}

 /*********************************************** FOOTER **********************************************/ 

footer {
    margin-top: 30px;
    padding: 15px 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.footer-container p {
    margin: 0;
    font-size: 1em;
    font-weight: bold;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    text-decoration: none;
    color: #FFD700;
    font-size: 1.1em;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    background-color: #FFD700;
    border-color: #FFD700;
}
