/* Google Maps Section Styles */

/* Map Container styling to match Vacation Rentals card look */
.elementor-widget-google_maps .elementor-widget-container {
    background-color: #ffffff;
    box-shadow: 0 5px 50px 0 rgba(33, 33, 33, 0.15);
    padding: 10px;
    border-radius: 3px;
    overflow: hidden;
    /* Ensure iframe corners are clipped */
}

/* Ensure iframe is responsive and has a good height */
.elementor-widget-google_maps iframe {
    width: 100% !important;
    height: 400px !important;
    /* Fixed height for consistency */
    display: block;
    border: none;
    border-radius: 3px;
    /* Inner radius */
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .elementor-widget-google_maps iframe {
        height: 300px !important;
    }

    .elementor-widget-google_maps .elementor-widget-container {
        box-shadow: 0 5px 20px 0 rgba(33, 33, 33, 0.1);
        padding: 5px;
    }
}