.mpop-checkout-fields {
    font-family: inherit;
    margin: 20px 0 !important;
    padding: 20px !important;
    border: 2px solid #0073aa !important;
    border-radius: 5px !important;
    background: #f9f9f9 !important;
    display: block !important;
}

.mpop-checkout-fields.mpop-visible {
    display: block !important;
}

.mpop-checkout-fields h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #0073aa;
}

.mpop-checkout-fields .form-row {
    margin-bottom: 15px;
}

.mpop-checkout-fields label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.mpop-checkout-fields .required {
    color: #dc3232;
}

.mpop-checkout-fields select,
.mpop-checkout-fields input[type="file"] {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.mpop-checkout-fields select:focus,
.mpop-checkout-fields input[type="file"]:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}

#mpop_account_details {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mpop_account_details h4 {
    margin: 0 0 10px 0;
    color: #0073aa;
    font-size: 16px;
}

.mpop-account-info {
    line-height: 1.6;
}

.mpop-account-info p {
    margin: 8px 0;
}

.mpop-account-info strong {
    color: #333;
}

.mpop-platform-paypal {
    border-left: 4px solid #0070ba;
}

.mpop-platform-western_union {
    border-left: 4px solid #ffb700;
}

.mpop-platform-ghs_bank {
    border-left: 4px solid #dc3545;
}

.mpop-important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 3px;
    padding: 10px;
    margin: 15px 0;
    font-size: 13px;
    line-height: 1.5;
}

.mpop-important-note strong {
    color: #856404;
}

.mpop-loading {
    opacity: 0.6;
    pointer-events: none;
}

.mpop-error {
    color: #dc3232;
    font-weight: 600;
}

.mpop-success {
    color: #46b450;
    font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .mpop-checkout-fields {
        padding: 15px;
        margin: 15px 0;
    }
    
    .mpop-checkout-fields select,
    .mpop-checkout-fields input[type="file"] {
        max-width: 100%;
    }
    
    .mpop-checkout-fields #mpop_account_details {
        padding: 10px;
    }
}

/* File upload styling */
#mpop_payment_screenshot {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    background: #fafafa;
    transition: all 0.3s ease;
}

#mpop_payment_screenshot:hover {
    border-color: #0073aa;
    background: #f0f8ff;
}

#mpop_payment_screenshot:focus {
    border-color: #0073aa;
    background: #f0f8ff;
    outline: none;
}

/* Preview styles for different platforms */
.mpop-paypal-info {
    /* background: linear-gradient(135deg, #0070ba, #003087); */
    /* color: white; */
    padding: 15px;
    border-radius: 8px;
}

.mpop-western-union-info {
    /* background: linear-gradient(135deg, #ffb700, #ff8c00); */
    /* color: white; */
    padding: 15px;
    border-radius: 8px;
}

.mpop-ghs-bank-info {
    /* background: linear-gradient(135deg, #dc3545, #b02a37); */
    /* color: white; */
    padding: 15px;
    border-radius: 8px;
}

.mpop-account-field {
    margin: 8px 0;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mpop-account-field:last-child {
    border-bottom: none;
}

.mpop-field-label {
    font-weight: 600;
    opacity: 0.9;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mpop-field-value {
    font-size: 14px;
    margin-top: 2px;
}

.mpop-note {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
}

.mpop-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 3px;
    padding: 10px;
    margin: 15px 0;
    font-size: 13px;
    line-height: 1.5;
}

.mpop-notice strong {
    color: #856404;
}