.info-panel {
    display: flex;
    align-items: center; /* Centre verticalement les éléments enfants */
    background-color: #f0f0f0;
    padding: 10px;
    font-family: Arial, sans-serif;
}

.info-icon {
    font-size: 20px; /* Assurez-vous que la taille de l'icône est appropriée */
    margin-right: 10px; /* Espace entre l'icône et le texte */
    color: #333;
}

.info-text {
    font-size: 16px; /* Taille du texte */
    line-height: 20px; /* Hauteur de ligne appropriée pour aligner avec l'icône */
}


.code-container {
    position: relative;
    background-color: #282c34; /* Arrière-plan sombre */
    border-radius: 5px;
    margin: 20px;
    padding: 20px;
}

pre {
    margin: 0;
    color: #abb2bf; /* Couleur du texte clair */
}

.code-container button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: #61afef;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.code-container button:hover {
    background-color: #5288c6;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #4CAF50; /* Green */
    color: white;
    border-radius: 5px;
    z-index: 1000;
    transition: opacity 0.5s, bottom 0.5s;
    opacity: 0; /* Commence invisible */
}

.container {
    position: relative;      /* Positionnement relatif */
    text-align: center;      /* Centrage du texte */
    color: white;            /* Couleur du texte */
}

.container a {
    display: block;          /* Rend le lien comme un bloc */
    width: 60%;              /* Largeur ajustable de l'image */
    margin: 0 auto;          /* Auto-marge pour centrer le bloc */
    padding-top: 15%;        /* Espacement supérieur */
}

.container img {
    width: 100%;             /* L'image prend toute la largeur de son conteneur */
}

.text {
    position: absolute;      /* Positionnement absolu */
    top: 20%;                /* Positionnement vertical */
    left: 50%;               /* Décalage horizontal */
    transform: translateX(-50%); /* Centrage horizontal */
    width: 100%;             /* Largeur complète */
}

