/**
 * NoAPI Google Map Embed Styles
 */

.googlemap-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.googlemap-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .googlemap-container {
        padding-bottom: 75%; /* Adjust aspect ratio for smaller screens */
    }
}

@media (max-width: 480px) {
    .googlemap-container {
        padding-bottom: 100%; /* Square aspect ratio for very small screens */
    }
} 