/* Payment Modal Styles - UPDATED */
.payment-modal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    /* REMOVE overflow: hidden; - This is blocking scrolling */
    /* ADD these for scrolling */
    max-height: 90vh;
    overflow-y: auto;
    margin: 5vh auto;
}

/* Add scrollbar styling for .payment-modal */
.payment-modal::-webkit-scrollbar {
    width: 8px;
}

.payment-modal::-webkit-scrollbar-track {
    background: #141414;
    border-radius: 4px;
}

.payment-modal::-webkit-scrollbar-thumb {
    background: #141414;
    border-radius: 4px;
}

.payment-modal::-webkit-scrollbar-thumb:hover {
    background: #141414;
}

/* Firefox */
.payment-modal {
    scrollbar-width: thin;
    scrollbar-color: #141414 #141414;
}
.payment-header {
    background: rgba(27, 80, 129, 0.95);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: 141414;
    font-size: 24px;
}

.header-text h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

.header-text p {
    margin: 4px 0 0;
    color: #718096;
    font-size: 14px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #718096;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f7fafc;
    color: #e53e3e;
}

.payment-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
    padding: 32px;
    background: #15497c;
    min-height: 600px;
}

.info-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body {
    padding: 24px;
}

/* Tier Info Card */
.tier-info-card .tier-badge {
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tier-info-card h4 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
}

.tier-description {
    color: #718096;
    margin-bottom: 24px;
    line-height: 1.5;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    width: 32px;
    height: 32px;
    background: #edf2f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4c51bf;
    font-size: 14px;
}

.feature-label {
    display: block;
    font-size: 12px;
    color: #a0aec0;
    margin-bottom: 2px;
}

.feature-value {
    display: block;
    font-weight: 600;
    color: #2d3748;
}

.btn-tier-change {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #4a5568;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-tier-change:hover {
    border-color: #667eea;
    background: #f7fafc;
    color: #667eea;
}

/* Wallet Card */
.wallet-card .wallet-status {
    background: #48bb78;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.wallet-balance-display {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f6f9fc, #edf2f7);
    border-radius: 12px;
    margin-bottom: 20px;
}

.balance-label {
    font-size: 14px;
    color: #718096;
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 48px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1;
}

.balance-leads {
    font-size: 14px;
    color: #718096;
}

.balance-alert .alert {
    background: #feebc8;
    border: 1px solid #fbd38d;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.balance-alert i {
    color: #dd6b20;
    font-size: 20px;
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    display: block;
    color: #c05621;
    margin-bottom: 4px;
}

.balance-progress {
    margin-top: 20px;
}

.progress-label {
    font-size: 14px;
    color: #718096;
    margin-bottom: 8px;
}

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #48bb78, #38a169);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #718096;
}

.progress-stats strong {
    color: #2d3748;
}

/* Lead Stats Card */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.today-stat .stat-icon {
    background: rgba(237, 137, 54, 0.1);
    color: #ed8936;
}

.month-stat .stat-icon {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.cost-stat .stat-icon {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #718096;
    margin-top: 4px;
}

/* Top-up Card */
.topup-card .header-badge {
    background: #4c51bf;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.amount-section h4 {
    margin: 0 0 16px;
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.amount-option {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.amount-option:hover {
    border-color: #c3dafe;
    background: #f7fafc;
}

.amount-option.selected {
    border-color: #667eea;
    background: #ebf4ff;
}

.amount-option .amount {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
}

.amount-option .leads {
    font-size: 12px;
    color: #718096;
}

.amount-option .bonus {
    font-size: 11px;
    background: #48bb78;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 8px;
    display: inline-block;
}

.custom-amount {
    margin-top: 20px;
}

.custom-amount label {
    display: block;
    margin-bottom: 8px;
    color: #718096;
    font-size: 14px;
}

.custom-input {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.currency {
    padding: 0 16px;
    background: #f7fafc;
    color: #718096;
    font-weight: 600;
}

.custom-input input {
    flex: 1;
    border: none;
    padding: 14px;
    font-size: 16px;
    outline: none;
}

.btn-use-custom {
    background: #667eea;
    color: white;
    border: none;
    padding: 14px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-use-custom:hover {
    background: #5a67d8;
}

/* Payment Methods */
.payment-methods-section {
    margin-top: 32px;
}

.payment-methods-section h4 {
    margin: 0 0 20px;
    color: #2d3748;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method-option {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method-option:hover {
    border-color: #c3dafe;
}

.payment-method-option.selected {
    border-color: #667eea;
    background: #ebf4ff;
}

.method-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: #f7fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #4c51bf;
}

.method-info {
    flex: 1;
}

.method-name {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

.method-desc {
    font-size: 13px;
    color: #718096;
}

.method-badge {
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.method-badge.recommended {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}

.method-badge.secure {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.method-badge.popular {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
}

.method-details {
    padding: 0 20px 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
}

/* Bank Selection */
.bank-selection .section-title {
    color: #718096;
    font-size: 14px;
    margin-bottom: 12px;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.bank-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.bank-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.bank-option img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
}

.bank-option span {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
}

/* Card Input Section */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #718096;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.cvv-input {
    position: relative;
}

.cvv-help {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #a0aec0;
    cursor: help;
}

/* PayFast Features */
.payfast-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payfast-features span {
    background: #f7fafc;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 6px;
}

.payfast-features i {
    color: #48bb78;
}

/* Payment Summary */
.payment-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #718096;
}

.summary-item.total {
    border-top: 2px solid #e2e8f0;
    margin-top: 8px;
    padding-top: 16px;
    color: #2d3748;
    font-size: 18px;
    font-weight: 700;
}

/* Payment Actions */
.payment-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.btn-pay-now {
    flex: 1;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

.payment-security {
    font-size: 11px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-cancel {
    padding: 20px 32px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #718096;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.payment-security-info {
    text-align: center;
    color: #718096;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* History & Tracking */
.history-tracking-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.btn-view-all {
    background: none;
    border: none;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: #f7fafc;
}

.history-placeholder,
.leads-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #a0aec0;
}

.history-placeholder i,
.leads-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* Footer */
.payment-footer {
    background: #2d3748;
    color: white;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-support {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-support i {
    font-size: 24px;
    color: #667eea;
}

.support-info {
    display: flex;
    flex-direction: column;
}

.support-info strong {
    font-size: 14px;
}

.support-info span {
    font-size: 12px;
    opacity: 0.8;
}

.footer-security {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .payment-body {
        grid-template-columns: 1fr;
    }
    
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bank-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .payment-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .header-main {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .payment-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}/* Add to payment-styles.css or create a new payment-ui.css */

/* Payment Status Banner */
.payment-status-banner {
    margin: 15px 0;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.payment-status-banner.owed {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107;
    color: #856404;
}

.payment-status-banner.paid {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #28a745;
    color: #155724;
}

.payment-status-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-status-info {
    display: flex;
    flex-direction: column;
}

.payment-status-info strong {
    font-size: 0.95rem;
}

.payment-status-info small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.btn-pay-now-sm {
    background: var(--deep-teal);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-pay-now-sm:hover {
    background: #14A1A1;
    transform: translateY(-1px);
}

/* Payment Alert in Analytics */
.payment-alert {
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-alert.owed {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #dc3545;
    color: #721c24;
}

.payment-alert.paid {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #28a745;
    color: #155724;
}

.btn-pay-now-xs {
    background: var(--deep-teal);
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    margin-left: auto;
}

/* Unpaid leads stat */
.lead-stat-item.unpaid {
    background: #fff3cd;
    border: 1px solid #ffc107;
}

.lead-stat-item.unpaid .lead-stat-label {
    color: #856404;
}

.lead-stat-item.unpaid .lead-stat-value {
    color: #856404;
    font-weight: 700;
}

/* Listing card badge for amount owed */
.badge-owed {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb) !important;
    color: #721c24 !important;
    border: 1px solid #dc3545 !important;
    font-weight: 600;
}

/* Pay button in listing cards */
.btn-warning {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #212529;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Dashboard payment widget */
.payment-widget {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.payment-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.payment-widget-header h4 {
    margin: 0;
    color: #333;
}

.payment-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-teal);
    margin: 10px 0;
}

.payment-breakdown {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.payment-breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
}

.payment-breakdown-item.total {
    font-weight: 700;
    color: #333;
    border-top: 1px solid #eee;
    margin-top: 8px;
    padding-top: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* Add to your CSS file or create a new one */

/* Payment badge for owed amount */
.badge-owed {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb) !important;
    color: #721c24 !important;
    border: 1px solid #dc3545 !important;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Payment due notice in title */
.listing-payment-due {
    font-size: 0.85rem;
    color: #dc3545;
    background: #f8d7da;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Lead cost badge */
.lead-cost-badge {
    font-size: 0.75rem;
    color: #666;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    border: 1px solid #dee2e6;
}

/* Payment due item in details */
.payment-due-item {
    color: #dc3545 !important;
    font-weight: 600;
}

.payment-due-item i {
    color: #dc3545 !important;
}

/* Payment lead count in rating */
.payment-lead-count {
    font-size: 0.85rem;
    color: #856404;
    background: #fff3cd;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Warning button style */
.btn-warning {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #212529;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Lead count badge on pay button */
.badge-lead-count {
    background: #dc3545;
    color: white;
    font-size: 0.7rem;
    padding: 1px 4px;
    border-radius: 10px;
    margin-left: 4px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Payment summary section */
.card-payment-summary {
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

.payment-summary-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #856404;
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-summary-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amount-label {
    color: #856404;
    font-size: 0.9rem;
}

.amount-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #dc3545;
}

.payment-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.btn-pay-summary {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-pay-summary:hover {
    background: #c82333;
    transform: translateY(-1px);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .listing-payment-due {
        font-size: 0.75rem;
        padding: 2px 6px;
    }
    
    .badge-owed {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .payment-lead-count {
        font-size: 0.75rem;
        padding: 2px 6px;
    }
    
    .btn-warning {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}