#vmo-tool-select {
    width: 100%;
    box-sizing: border-box;
}   

.vmo-prepaid-cta {
    margin-bottom: 1em;
    font-family: inherit;
    text-align: center;

    /* ❌ PAS de flex ici */
    display: block;
}


.vmo-prepaid-cta .button {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

    /* ✅ une seule couche flex */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* ✅ Android safe */
    min-height: 48px;
    padding: 12px 16px;
    line-height: 1.2;

    box-sizing: border-box;
    text-align: center;
    white-space: normal;
}

