/* Exemple de styles pour le QR code */

.qr-code-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: none;
}

.qr-code-image img{
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}

/* Styles pour la légende */

figcaption {

    text-align: center;

    font-size: 1rem;

    margin-top: 10px;

    color: #333;

}



figcaption a {

    color: #0073aa;

    text-decoration: none;

}



figcaption a:hover {

    text-decoration: underline;

}

.fallback-link {
    display: block; /* Afficher par défaut */
}
@media only screen and (min-width: 1079px) and (max-width: 1082px) {
    .qr-code-image {
        display: flex;
        flex-direction: column;
    }
    .fallback-link {
        display: none;
    }
}