.map-container {
    width: 100%;
    margin: 2rem 0;
}

.static-map-block {
    width: 100%;
    height: 400px;
}

/* Custom marker style */
.custom-map-marker {
    background: none;
    border: none;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background-color: #22F502; /* Bright green color */
    border: 1px solid #666666; /* Dark gray border */
    border-radius: 50%; /* Makes it a perfect circle */
}

/* Custom map tiles style */
.map-tiles {
    filter: saturate(0.8) brightness(1.05);
}

/* Ensure the map container is responsive */
@media (max-width: 768px) {
    .static-map-block {
        height: 300px;
    }
} 