/* style spécifique pour new IHM */
.ui-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: 1px solid rgba(0,0,0,0);
    border-radius: 1000px;
    background: #9641D7;
    cursor: pointer;
    transition: transform .15s ease-in-out;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.ui-button::after, .ui-button::before {
    content: none; }

.ui-button-text-only .ui-button-text {
    padding: 0;
}