/* Conteneur principal centré */
#gayarometre-pro-app {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centre horizontalement */
    justify-content: center; /* centre verticalement */
    min-height: 400px;       /* hauteur minimale, ajuste si besoin */
    margin: 50px auto;       /* centre le bloc dans la page */
    padding: 30px;
    background: #f0f8ff;
    border-radius: 15px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 600px;        /* limite largeur */
    text-align: center;      /* centre le texte */
}

/* Boutons centrés et stylés */
#gayarometre-pro-app button {
    background: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 10px;
    margin: 10px;
    padding: 15px 25px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

#gayarometre-pro-app button:hover {
    background: #ff3b2f;
}

/* Titres centrés */
#gayarometre-pro-app h2, #gayarometre-pro-app h3 {
    margin-bottom: 20px;
}