/* Style de base pour la méthode de paiement MVola */
.payment_method_mvola_payment .payment_box {
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-top: 10px;
}
/* Afficher le champ MVola malgré le display:none global */
.payment_method_mvola_payment input#mvola_debit_msisdn,
.woocommerce-AddPaymentMethod input#mvola_debit_msisdn {
    display: block !important;
}

.payment_method_mvola_payment label img {
    width: 10%;
    height: auto;
}
/* Style pour le résumé du paiement */
.mvola-payment-summary {
    font-size: 0.9em;
    line-height: 1.5;
}

.mvola-payment-summary p {
    margin: 0 0 10px 0;
    padding: 0;
}

.mvola-conversion-info {
    padding: 10px;
    background-color: #f0f8ff;
    border-left: 3px solid #4a90e2;
    margin-top: 10px !important;
}

/* Style pour le bouton de paiement */
.payment_method_mvola_payment .button.alt {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.payment_method_mvola_payment .button.alt:hover {
    background-color: #3a7bc8;
}

/* Style pour le loader */
.loader-iframe {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-iframe img {
    width: 100px;
    height: auto;
}

/* Conteneur de l'iframe */
.cntIframe {
    position: relative;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    min-height: 500px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Style de l'iframe de paiement */
iframe#mvola_payment_iframe {
    position: relative;
    z-index: 9;
    width: 100%;
    min-height: 600px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
}

/* Style pour les messages d'erreur */
.woocommerce-error {
    background-color: #f8d7da;
    border-left: 3px solid #dc3545;
    padding: 10px 15px;
    margin-bottom: 15px;
}

/* Style pour les appareils mobiles */
@media (max-width: 768px) {
    .cntIframe {
        padding: 10px;
    }
    
    iframe#mvola_payment_iframe {
        min-height: 500px;
    }
    
    .mvola-conversion-info {
        font-size: 0.85em;
    }
}