/* Google Maps Custom Styles */
.google-map-container {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.google-map-container iframe {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .google-map-container {
        margin-top: 10px;
    }
    
    .google-map-container iframe {
        height: 250px !important;
    }
}

@media (max-width: 480px) {
    .google-map-container iframe {
        height: 200px !important;
    }
}

/* Style cho location address */
.location-address {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #3999fd;
}

/* Loading state */
.google-map-container.loading {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.google-map-container.loading::before {
    content: "Đang tải bản đồ...";
    color: #666;
    font-style: italic;
}
