.LknPixForWoocommerceC6PaymentFields {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.LknPixForWoocommerceC6PaymentFields .wc-block-components-text-input {
    width: 100%;
}

/* Pix button */

.pix-generate-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #3A3A3A;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pix-generate-button:hover {
    background-color: #009688;
    color: #fff;
    outline: none;
}

.pix-generate-button img {
    height: 24px;
    width: 24px;
    vertical-align: middle;
    /* Deixa o ícone escuro, suave, sem perder o tom original */
    filter: brightness(0) invert(0.2) sepia(1) saturate(10) hue-rotate(160deg);
}