/* Estilos para el botón de WOM */
.payment-gateway-btn {
    display: flex;
    justify-content: center;
    width: 288px;
    height: 40px;
    gap: 8px;
    padding: 10px 24px;
    background-color: #589CDF;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFFFFF;
}

.payment-gateway-btn:hover {
    background-color: #589CDF;
    color: #FFFFFF;
}

.payment-result-container {
    background-color: #FFFFFF;
    padding: 10px;
    width: 288px;
    margin-top: 15px;
    border-radius: 5px;
}

.add-payment-btn {
    min-width: unset !important;
    width: 100%;
}


.pg-loading {
    color: black;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 5px;
}

.pg-error {
    color: black;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 5px;
    width: 270px;
}

/* CARDS LIST */
.cards-list {
    display: flex;
    flex-direction: column;
}

.payment-card-item {
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 10px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-logo {
    max-width: 70px;
    width: auto;
}

.card-type {
    font-weight: bold;
    color: #333;
}

.card-number {
    font-family: 'Montserrat';
    font-size: 16px;
    letter-spacing: 1px;
    color: #000000;
}


.no-cards {
    color: #000000;
    text-align: center;
    padding: 20px;
}


.card-button-mp {
    margin: 10px 0;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.card-button-mp:hover .payment-card-item {
    border-color: #4a90e2;
    background-color: #f8f9fa;
}

#pg-cards-result {
    background-color: rgba(254, 203, 203, 0.795);
    padding: 10px;
    color: red;
    border-radius: 10px;
    /* font-weight: 700; */
}


/* MODAL CONFIRMACION DE PAGO  */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: 'Montserrat';

}

.payment-gateway-modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
}

.payment-gateway-modal-content h3 {
    color: #000000;
}

.payment-gateway-modal-content p {
    color: #000000;
}

.modal-card-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn-confirm {
    background: #009ee3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-cancel {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}