body {
    background-color: #d3d3d3;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-y: auto;
    position: relative;
}

.content {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0 auto;
}

.content-aide {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.title-modification {
    font-size: 50px;
    color: #00C0C0;
    text-align: center;
    margin-bottom: 40px;
}

.aide {
    font-size: 18px; /* Ajuste la taille des paragraphes pour qu'ils soient plus petits que les sous-titres */
    text-align: left;
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
}

.aide-texte {
    font-size: 18px; /* Ajuste la taille des paragraphes pour qu'ils soient plus petits que les sous-titres */
    text-align: left;
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    line-height: 2;
}

.aide-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.plus-circle {
    display: inline-block;
    width: 13px; /* Largeur du cercle */
    height: 13px; /* Hauteur du cercle */
    border-radius: 50%; /* Forme le cercle */
    background-color: #00C0C0; /* Couleur du cercle */
    margin-right: 10px; /* Espace entre le cercle et le texte */
}

h3.aide {
    font-size: 24px; /* Taille des sous-titres */
    text-align: center;
    margin-bottom: 20px;
}

.help-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #00C0C0;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */

}

.help-button:hover {
    background-color: #00adad;
}

.back-button {
    position: fixed;
    top: 20px;
    left:20px;
    background-color: #00C0C0;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}

.back-button:hover {
    background-color: #00adad;
}

.back-button span {
    position: relative;
    font-size: 38px;
    top: -5px;
}

.progress-bar-container {
    position: absolute; /* relative- */
    width: 30%;
    background-color: white;
    border-radius: 25px;
    margin: 20px 0;
    top: 10px;
    left: 10px;
}

/* Animation pour la barre de progression */
@keyframes fillProgressBarTo25 {
    from {
        width: 0;
    }
    to {
        width: 25%; /* Ajuste cette valeur selon la progression souhaitée */
    }
}

@keyframes fillProgressBarTo50 {
    from {
        width: 25%;
    }
    to {
        width: 50%; /* Ajuste cette valeur à 50% */
    }
}

@keyframes fillProgressBarTo75 {
    from {
        width: 50%;
    }
    to {
        width: 75%; /* Ajuste cette valeur à 50% */
    }
}


@keyframes fillProgressBarTo100 {
    from {
        width: 75%;
    }
    to {
        width: 100%; /* Ajuste cette valeur à 50% */
    }
}

.progress-bar {
    height: 20px;
    background-color: #00C0C0;
    border-radius: 25px;
}
.progress-bar-25 {
    height: 20px;
    background-color: #00C0C0;
    border-radius: 25px;
    animation: fillProgressBarTo25 2s ease-out forwards; /* Applique l'animation */
}

.progress-bar-50 {
    height: 20px;
    background-color: #00C0C0;
    border-radius: 25px;
    animation: fillProgressBarTo50 2s ease-out forwards; /* Applique l'animation */
}

.progress-bar-75 {
    height: 20px;
    background-color: #00C0C0;
    border-radius: 25px;
    animation: fillProgressBarTo75 2s ease-out forwards; /* Applique l'animation */
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6); /* Couleur des bulles */
    opacity: 0.7;
    pointer-events: none; /* Assure que les bulles ne bloquent pas les clics */
}

@keyframes bubbleUp {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px); /* Ajuste la distance selon besoin */
        opacity: 0;
    }
}

.bubble-1 {
    width: 10px;
    height: 10px;
    top: 20px;
    left: 10%;
    animation: bubbleUp 5s ease-in infinite;
}

.bubble-2 {
    width: 12px;
    height: 12px;
    top: 25px;
    left: 30%;
    animation: bubbleUp 6s ease-in infinite;
}

.bubble-3 {
    width: 8px;
    height: 8px;
    top: 15px;
    left: 50%;
    animation: bubbleUp 4s ease-in infinite;
}

.bubble-4 {
    width: 15px;
    height: 15px;
    top: 30px;
    left: 70%;
    animation: bubbleUp 7s ease-in infinite;
}

.bubble-5 {
    width: 12px;
    height: 12px;
    top: 40px;
    left: 20%;
    animation: bubbleUp 6s ease-in infinite;
}

.bubble-6 {
    width: 14px;
    height: 14px;
    top: 10px;
    left: 40%;
    animation: bubbleUp 8s ease-in infinite;
}

.bubble-7 {
    width: 11px;
    height: 11px;
    top: 35px;
    left: 60%;
    animation: bubbleUp 7s ease-in infinite;
}

.bubble-8 {
    width: 9px;
    height: 9px;
    top: 25px;
    left: 80%;
    animation: bubbleUp 5s ease-in infinite;
}

.progress-bar-100 {
    height: 20px;
    border-radius: 25px;
    background: linear-gradient(45deg, #00a0a0, #00b0b0, #00c0c0, #00d0d0, #00e0e0, #00f0f0);
    background-size: 400% 400%;
    animation: gradientBackground 10s ease infinite;
    position: relative; /* Pour les bulles */
    overflow: hidden; /* Assure que les bulles ne débordent pas */
}

@keyframes gradientBackground {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}


.gradient-bar {
    background: linear-gradient(45deg, #00a0a0, #00b0b0, #00c0c0, #00d0d0, #00e0e0, #00f0f0);
    background-size: 400% 400%;
    animation: gradientBackground 10s ease infinite;
}

.card-left h1 {
    text-align: center;
    font-size: 2em; /* Ajuste la taille des titres de la carte */
}

.info-column h3 {
    font-size: 1.6em; /* Ajuste la taille des sous-titres */
}

.info-column h4 {
    font-size: 1.4em; /* Ajuste la taille des sous-titres */
}

.info-column p {
    font-size: 1.2em; /* Ajuste la taille du texte des paragraphes */
}

.input, .input_date {
    font-size: 1.2em; /* Ajuste la taille de la police pour les champs de saisie */
}

.dropdown-button {
    font-size: 1.2em; /* Ajuste la taille de la police pour le bouton du menu déroulant */
}

.label {
    position: relative;
}

.dropdown {
    display: inline-block;
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.dropdown-button {
    background-color: #00C0c0;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}

.dropdown-button:hover {
    background-color: #00adad;
}

.dropdown-content {
    display: none;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px 5px 5px 5px;
    z-index: 1;
    padding: 12px 16px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.dropdown-content p {
    color: black;
    margin: 0;
}

.input {
    font-size: 1em;
    color: #000;
    background: #fff;
    padding: 1rem 1.2rem;
    width: 350px;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.2s;
    text-align: left;
    margin-bottom: 10px;
    margin-top: 15px;
}

.input-error {
    border: 2px solid red; /* Bordure rouge */
    background-color: #fff; /* Maintient l'input blanc */
    margin-top: 10px;
    margin-bottom: 15px;
}

.error-message {
    color: red;
    font-size: 1rem;
    margin-top: 5px; /* Place le message d'erreur sous l'input */
    margin-bottom: 0; /* Évite tout espace inutile en dessous */
    line-height: 1.2; /* Gère l'espacement du texte du message d'erreur */
}

.input_date {
    font-size: 1.35em;
    color: #000;
    background: #fff;
    padding: 1rem 1.2rem;
    width: 350px;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.2s;
    text-align: left;
    margin-bottom: 30px;
    margin-top: 30px;
}

.input:focus {
    outline: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.password-icon {
    position: absolute;
    right: 30px;
    top: 45px;
    transform: translateY(-50%);
    width: 20px;
    color: #000;
    cursor: pointer;
    transition: all 0.2s;
}

.password-icon:hover {
    cursor: pointer;
    color: #00C0C0;
}

.password-icon .feather-eye-off {
    display: none;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.input-container-mot-de-passe {
    position: relative;
    display: flex;
    flex-direction: column; /* Pour aligner l'input et le message d'erreur en colonne */
    align-items: flex-start; /* Alignement à gauche pour correspondre au style de l'image */
    margin-bottom: 20px;
    padding-top: 0;  /* Réduit l'espace en haut de la zone rouge */
    padding-bottom: 5px; /* Espace en bas de la zone rouge (pour le message d'erreur) */
    padding-left: 10px;  /* Espacement sur les côtés */
    padding-right: 10px; /* Espacement sur les côtés */
}

.input-container-mot-de-passe.error-container {
    background-color: #fde2e2; /* Fond rouge clair autour de l'input */
    padding-top: 0;  /* Réduit l'espace en haut de la zone rouge */
    padding-bottom: 5px; /* Espace en bas de la zone rouge (pour le message d'erreur) */
    padding-left: 10px;  /* Espacement sur les côtés */
    padding-right: 10px; /* Espacement sur les côtés */
    border-radius: 5px; /* Pour arrondir les bords de la zone rouge */
}

.button-container {
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin: 20px auto 0 auto;
}

.button-container-finir {
    display: flex;
    justify-content: center; /* Centre horizontalement */
    margin-top: 40px; /* Ajuste l'espacement si nécessaire */
}

.button-container-aide {
    display: flex;
    justify-content: center; /* Centre le bouton horizontalement */
    align-items: center; /* Centre le bouton verticalement (si nécessaire) */
    margin-bottom: 20px; /* Ajoute de l'espace en dessous du conteneur */
}

.continue-button {
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

.retour-button {
    background-color: #00C0C0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}

.retour-button:hover {
    background-color: #00b0b0; /* Couleur de fond plus foncée */
}

.retour-button-aide {
    background-color: #00C0C0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px; /* Ajoute de l'espace en dessous du bouton */
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}
.retour-button-aide:hover {
    background-color: #00b0b0; /* Couleur de fond plus foncée */
}

.suivant-button {
    background-color: #00C0C0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}
.suivant-button:hover {
    background-color: #00b0b0; /* Couleur de fond plus foncée */
}

.page-merci .button-container {
    margin-bottom: 50px; /* Ajuste la valeur selon la taille de l'espace que tu souhaites */
}


.message-box p {
    margin: 0; /* Pas de marge autour du texte */
    padding: 10px 10px; /* Espacement intérieur entre le texte et la croix */
}

.modifier-button {
    position: absolute;
    bottom: 10px; /* Positionne le bouton en bas */
    right: 20px; /* Positionne le bouton à droite */
    width: 100px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.card {
    display: flex;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    width: 800px;
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out; /* Transition pour l'animation de zoom */
}

.card:hover {
    transform: scale(1.05); /* Grossit la carte à 105% lorsqu'on la survole */
}

.card-left {
    padding: 20px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.card-left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-right {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    position: relative;
    background-color: white;
    color: black;
}

.info-columns {
    display: flex;
    flex: 30;
    position: relative;
    margin-bottom: 30px; /* Ajoute un espace en bas pour le bouton Modifier */
    align-items: flex-start; /* Aligne les colonnes en haut */
}

.info-column {
    width: 33%; /* Ajustement pour répartir l'espace également entre les colonnes */
    padding: 0; /* Enlève le padding pour compacter les colonnes */
    text-align: center;
    position: relative;
}

.info-column .icon {
    position: absolute;
    top: -3px; /* Ajuste cette valeur pour positionner l'icône verticalement */
    left: -3px; /* Ajuste cette valeur pour positionner l'icône horizontalement */
    width: 23px; /* Ajuste la taille des icônes */
    height: 23px; /* Ajuste la taille des icônes */
}

.info-column h3, .info-column h4, .info-column p {
    margin: 1px; /* Enlève les marges pour compacter le contenu */
    padding: 5px 0; /* Ajoute un léger padding pour l'espacement */
    line-height: 40px; /* Ajuste la hauteur de ligne pour compacter le texte */
}

.title-jeu {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    color: white;
    padding: 10px 20px;
    text-align: center;
}

.card.jaune .card-left {
    background-color: #F9DE4B;
}

.card.jaune .continue-button {
    background-color: #F9DE4B;
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}

.card.jaune .continue-button:hover {
    background-color: #F9DE4B;
}

.title-jeu.jaune {
    background-color: #F9DE4B;
}

.card.orange .card-left {
    background-color: #f57c00;
}

.card.orange .continue-button {
    background-color: #f57c00;
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}

.card.orange .continue-button:hover {
    background-color: #e57200;
}

.title-jeu.orange {
    background-color: #f57c00;
}

.card.bleu_ciel .card-left {
    background-color: #00d4ff;
}

.card.bleu_ciel .continue-button {
    background-color: #00d4ff;
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}

.card.bleu_ciel .continue-button:hover {
    background-color: #02c6ed;
}

.title-jeu.bleu_ciel {
    background-color: #00d4ff;
}

.card.vert_foncee .card-left {
    background-color: #778564;
}

.card.vert_foncee .continue-button {
    background-color: #778564;
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}

.card.vert_foncee .continue-button:hover {
    background-color: #707c60;
}

.title-jeu.vert_foncee {
    background-color: #778564;
}

.card.dore .card-left {
    background-color: #B08A37;
}

.card.dore .continue-button {
    background-color: #B08A37;
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}

.card.dore .continue-button:hover {
    background-color: #a58235;
}

.title-jeu.dore {
    background-color: #B08A37;
}

.card.gris .card-left {
    background-color: #999999;
}

.card.gris .continue-button {
    background-color: #999999;
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}

.card.gris .continue-button:hover {
    background-color: #8e8e8e;
}

.title-jeu.gris {
    background-color: #999999;
}

.card.orange_foncee .card-left {
    background-color: #ED4A1F;
}

.card.orange_foncee .continue-button {
    background-color: #ED4A1F;
    transition: background-color 0.3s ease; /* Transition douce pour le changement de couleur */
}

.card.orange_foncee .continue-button:hover {
    background-color: #d64420;
}

.title-jeu.orange_foncee {
    background-color: #ED4A1F;
}


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent pour voir qu'il y a un blocage */
    display: none; /* Masquer par défaut */
    z-index: 999; /* Assure qu'il est au-dessus des autres éléments */
    pointer-events: auto; /* Bloque tous les clics */
}

.container {
    width: 300px;
    height: 280px;
    position: relative; /* Changer de absolute à relative pour contenir les éléments enfants */
}

#coffee-machine {
    position: fixed; /* Fixe l'élément par rapport à la fenêtre du navigateur */
    top: 50%; /* Positionne l'élément à 50% du haut de la fenêtre */
    left: 50%; /* Positionne l'élément à 50% de la largeur de la fenêtre */
    transform: translate(-50%, -50%); /* Déplace l'élément de moitié de sa taille pour le centrer */
    z-index: 1000; /* Assure que la machine à café est au-dessus des autres éléments */
    display: none; /* Masquer par défaut */
}

/* En-tête de la machine à café */

.coffee-header {
    width: 100%;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ddcfcc;
    border-radius: 10px;
}
.coffee-header__buttons {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 25px;
    background-color: #282323;
    border-radius: 50%;
}
.coffee-header__buttons::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    bottom: -8px;
    left: calc(50% - 4px);
    background-color: #615e5e;
}
.coffee-header__button-one {
    left: 15px;
}
.coffee-header__button-two {
    left: 50px;
}
.coffee-header__display {
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    border-radius: 50%;
    background-color: #9acfc5;
    border: 5px solid #43beae;
    box-sizing: border-box;
}
.coffee-header__details {
    width: 8px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #9b9091;
    box-shadow: -12px 0 0 #9b9091, -24px 0 0 #9b9091;
}
.coffee-medium {
    width: 90%;
    height: 160px;
    position: absolute;
    top: 80px;
    left: calc(50% - 45%);
    background-color: #bcb0af;
}
.coffee-medium:before {
    content: "";
    width: 90%;
    height: 100px;
    background-color: #776f6e;
    position: absolute;
    bottom: 0;
    left: calc(50% - 45%);
    border-radius: 20px 20px 0 0;
}
.coffe-medium__exit {
    width: 60px;
    height: 20px;
    position: absolute;
    top: 0;
    left: calc(50% - 30px);
    background-color: #231f20;
}
.coffe-medium__exit::before {
    content: "";
    width: 50px;
    height: 20px;
    border-radius: 0 0 50% 50%;
    position: absolute;
    bottom: -20px;
    left: calc(50% - 25px);
    background-color: #231f20;
}
.coffe-medium__exit::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: -30px;
    left: calc(50% - 5px);
    background-color: #231f20;
}
.coffee-medium__arm {
    width: 70px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 25px;
    background-color: #231f20;
}
.coffee-medium__arm::before {
    content: "";
    width: 15px;
    height: 5px;
    position: absolute;
    top: 7px;
    left: -15px;
    background-color: #9e9495;
}
.coffee-medium__cup {
    width: 80px;
    height: 47px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 40px);
    background-color: #FFF;
    border-radius: 0 0 70px 70px / 0 0 110px 110px;
}
.coffee-medium__cup::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 6px;
    right: -13px;
    border: 5px solid #FFF;
    border-radius: 50%;
}
@keyframes liquid {
    0% {
        height: 0px;
        opacity: 1;
    }
    5% {
        height: 0px;
        opacity: 1;
    }
    20% {
        height: 62px;
        opacity: 1;
    }
    95% {
        height: 62px;
        opacity: 1;
    }
    100% {
        height: 62px;
        opacity: 0;
    }
}
.coffee-medium__liquid {
    width: 6px;
    height: 63px;
    opacity: 0;
    position: absolute;
    top: 50px;
    left: calc(50% - 3px);
    background-color: #74372b;
    animation: liquid 4s 4s linear infinite;
}
.coffee-medium__smoke {
    width: 8px;
    height: 20px;
    position: absolute;
    border-radius: 5px;
    background-color: #b3aeae;
}
@keyframes smokeOne {
    0% {
        bottom: 20px;
        opacity: 0;
    }
    40% {
        bottom: 50px;
        opacity: .5;
    }
    80% {
        bottom: 80px;
        opacity: .3;
    }
    100% {
        bottom: 80px;
        opacity: 0;
    }
}
@keyframes smokeTwo {
    0% {
        bottom: 40px;
        opacity: 0;
    }
    40% {
        bottom: 70px;
        opacity: .5;
    }
    80% {
        bottom: 80px;
        opacity: .3;
    }
    100% {
        bottom: 80px;
        opacity: 0;
    }
}
.coffee-medium__smoke-one {
    opacity: 0;
    bottom: 50px;
    left: 102px;
    animation: smokeOne 3s 4s linear infinite;
}
.coffee-medium__smoke-two {
    opacity: 0;
    bottom: 70px;
    left: 118px;
    animation: smokeTwo 3s 5s linear infinite;
}
.coffee-medium__smoke-three {
    opacity: 0;
    bottom: 65px;
    right: 118px;
    animation: smokeTwo 3s 6s linear infinite;
}
.coffee-medium__smoke-for {
    opacity: 0;
    bottom: 50px;
    right: 102px;
    animation: smokeOne 3s 5s linear infinite;
}
.coffee-footer {
    width: 95%;
    height: 15px;
    position: absolute;
    bottom: 25px;
    left: calc(50% - 47.5%);
    background-color: #41bdad;
    border-radius: 10px;
}
.coffee-footer::after {
    content: "";
    width: 106%;
    height: 26px;
    position: absolute;
    bottom: -25px;
    left: -8px;
    background-color: #000;
}

/* styles pour mobile */
@media only screen and (max-width: 640px) {
    body {
        padding: 20px;
    }

    .cards-container {
        width: 100%;
        margin: 10px;
    }

    .card {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .card-left {
        padding: 10px;
        width: 100%;
    }

    .card-right {
        display: flex;
        flex-direction: column;
        padding: 10px;

    }

    .info-columns {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 10px; /* Ajoute un espace en bas pour le bouton Modifier */
    }

    .info-column {
        width: auto;
        display: flex;
        flex-direction: column;
        text-align: center;
        border-bottom: 1px solid #efefef;
    }
    .info-column:last-child {
        border-bottom: none;
    }

    .info-column h3 {
        font-size: 1.6em; /* Ajuste la taille des sous-titres */
        line-height: 1.1;
    }


    .info-column h4 {
        font-size: 1.4em; /* Ajuste la taille des sous-titres */
        line-height: 1.1;
    }

    .info-column p {
        font-size: 1.3em; /* Ajuste la taille du texte des paragraphes */
        line-height: 1.0;
    }

    /* centrer bouton modifier */
    .modifier-button {
        position: relative;
        bottom: auto;
        right: auto;
        padding: 8px 16px;
        align-self: center;

    }

    .info-column .icon {
        position: absolute;
        top: -4px;
        left: 0;
        width: 20px;
        height: 20px;
    }

    .title-modification {
        font-size: 38px;
    }

    .input, .input_date {
        width: 90%;
    }

    .page-merci > img {
        width: auto;
        height: auto;
        max-width: 90%;
    }
}