/* styles/map.css */
#map {
    width: 100%;
    height: 500px;
    margin: 20px 0;
}

#filters {
    text-align: center;
    margin: 20px 0;
}

#filters label {
    margin: 0 10px;
}

@media (max-width: 768px) {
    #map {
        height: 300px;
    }

    #filters {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #filters label {
        margin: 5px 0;
    }
}
#image-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}