/**
 * Styles pour la solution de secours de la carte Google Maps
 */

/* Conteneur de la solution de secours */
.map-fallback {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    overflow: hidden;
}

/* Style pour l'image statique */
.map-fallback img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Effet de survol sur l'image */
.map-fallback a:hover img {
    transform: scale(1.02);
}

/* Style pour le message d'information */
.map-fallback .alert {
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

/* Style pour le lien vers Google Maps */
.map-fallback a {
    text-decoration: none;
    color: #0d6efd;
    transition: color 0.3s ease;
}

.map-fallback a:hover {
    color: #0a58ca;
}

/* Style pour le texte du lien */
.map-fallback p {
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Style pour l'icône dans le lien */
.map-fallback .fa-external-link-alt {
    font-size: 0.8em;
    vertical-align: 1px;
}

/* Styles pour les écrans mobiles */
@media (max-width: 767.98px) {
    .map-fallback img {
        max-height: 300px;
    }
}
