/**
 * DPay Payment Gateway Styles
 */

/* Modern payment method styling */
.wc_payment_method.payment_method_dummy {
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 12px !important;
    padding: 16px !important;
    border: 1px solid #f0f0f0 !important;
}

.wc_payment_method.payment_method_dummy:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Payment method label */
.wc_payment_method.payment_method_dummy label {
    display: flex;
    align-items: center;
    font-weight: 500 !important;
    font-size: 16px !important;
}

.wc_payment_method.payment_method_dummy label img {
    max-height: 28px;
    margin-left: 10px;
}

/* Payment icons display */
.stripe-payment-icons {
    margin: 12px 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.stripe-payment-icons img {
    max-width: 100%;
    height: auto;
    max-height: 40px;
}

/* Payment description */
.stripe-payment-description {
    color: #6B7280;
    font-size: 14px;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    line-height: 1.5;
}