.meowallet-payment-methods {
    display: flex;
    flex-direction: column; /* Mantém os itens em linha */
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start; /* Alinha à esquerda */
    margin: 32px 0;
    align-items: stretch;
}

.payment-method {
    min-width: 220px;
    max-width: 260px;
    border: 1.5px solid #e3e8ee;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(34, 113, 177, 0.07);
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: row; /* Alinha conteúdo interno em linha */
    align-items: center;
    height: 60px; /* Altura fixa para alinhar os métodos */
    padding: 10px 12px;
}

.payment-method:hover {
    border-color: #2271b1;
    box-shadow: 0 4px 16px rgba(34, 113, 177, 0.13);
    background-color: #f4faff;
}

.payment-method label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    margin: 0;
    gap: 12px;
    margin-bottom: 0 !important;
}

.payment-icon {
    max-height: 36px !important;
    margin-right: 0 !important;
    border-radius: 0;
    box-shadow: none;
    background: none;
    padding: 0;
}

.mbway-phone-field {
    margin-top: 14px;
    background: #eaf6ff;
    border-radius: 8px;
    animation: fadeIn 0.4s;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mbway-phone-field input {
    font-size: 1em;
    padding: 10px;
    border: 1.5px solid #2271b1;
    border-radius: 6px;
    margin-top: 5px;
    background: #fff;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.mbway-phone-field input:focus {
    border-color: #005fa3;
    box-shadow: 0 0 0 2px #b3d7ff;
}

/* mb data */
.meowallet-mb-data {
    margin: 32px auto;
    padding: 0 0 12px 0;
    border: 1.5px solid #e3e8ee;
    border-radius: 12px;
    background: none;
    max-width: 340px;
    box-shadow: none;
    font-size: 1.08em;
    text-align: left;
    position: relative;
}
.meowallet-mb-data__logo {
    display: block;
    margin: 18px auto 12px auto;
    max-width: 80px;
    height: auto;
}
.meowallet-mb-data td {
    padding: 8px 12px;
    border: none;
    background: none;
}
.meowallet-mb-data .mb_data_title {
    font-weight: 600;
    color: #2271b1;
    width: 120px;
    border: none;
    background: none;
}
.meowallet-mb-data .mb_entity,
.meowallet-mb-data .mb_reference,
.meowallet-mb-data .mb_value,
.meowallet-mb-data .mb_expires {
    font-family: monospace;
    color: #222;
    letter-spacing: 1px;
    background: none;
}
.meowallet-mb-data tr {
    border-bottom: 1px solid #e3e8ee;
    background: none;
}
.meowallet-mb-data tr:last-child {
    border-bottom: none;
}
.meowallet-mb-data__footer {
    margin-top: 18px;
    text-align: center;
    font-size: 0.98em;
    color: #2271b1;
    font-weight: 500;
}
.meowallet-mb-data__footer strong {
    color: #005fa3;
}
.meowallet-mb-data + br + a {
    display: inline-block;
    margin-top: 18px;
    color: #2271b1;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s;
}
.meowallet-mb-data + br + a:hover {
    color: #005fa3;
}