/**
 * Zelle Payment Gateway Styles
 */

/* Checkout Styles */
.wc-block-components-payment-method-icons {
    display: flex;
    align-items: center;
}

.zelle-payment-description {
    margin-bottom: 15px;
}

.zelle-payment-info {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f6e9;
    border: 1px solid #d4af37;
    border-radius: 4px;
}

.zelle-split-info {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.zelle-logo-wrapper {
    text-align: center;
    margin: 10px 0;
}

.zelle-logo {
    max-width: 120px;
    height: auto;
}

/* Thank You Page Styles */
.zelle-payment-instructions {
    margin: 20px 0;
    width: 100%;
}

.zelle-payment-alert {
    background-color: #f8f6e9;
    border: 2px solid #d4af37;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.zelle-payment-alert h3 {
    color: #a67c00;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.zelle-payment-alert p {
    margin-bottom: 10px;
    font-size: 15px;
}

.zelle-payment-alert strong {
    color: #a67c00;
}

.zelle-payment-steps {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.zelle-payment-steps h4 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.zelle-payment-steps ol {
    padding-left: 20px;
}

.zelle-payment-steps li {
    margin-bottom: 8px;
}

.zelle-payment-note {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
}

.zelle-payment-note p {
    margin: 0;
}

/* Gold/Bullion Theme Compatibility */
@media (max-width: 768px) {
    .zelle-payment-alert,
    .zelle-payment-steps,
    .zelle-payment-note {
        padding: 15px;
    }
    
    .zelle-payment-alert h3 {
        font-size: 16px;
    }
    
    .zelle-payment-steps ol {
        padding-left: 15px;
    }
} 