/**
 * WooCommerce Zelle Payment Gateway Styles
 * Version: 1.1.1
 */

/* ================================
   FRONTEND THANK YOU PAGE STYLES
   ================================ */

.wph-wc-zelle-thank-you {
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.05); */
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    /* border: 1px solid #cedbff; */
}

.woocommerce-order-zelle-instructions {
    max-width: 800px;
}

.woocommerce-order-zelle-instructions .wph-wc-zelle-thank-you {
    margin: 0px;
    padding: 0px;
    border: 0px;
    box-shadow: none;
    border-top: 1px solid #d3d9e4;
    border-radius: 0px;
    padding-top: 30px;
}

.wph-wc-zelle-thank-you .zelle-title {
    color: #333;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    display: block;
}

.wph-wc-zelle-thank-you h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}
.wph-wc-zelle-thank-you .zelle-caption {
    font-size: 16px;
    margin-bottom: 1.5rem;
    text-align: center;
    display: block;
}

.zelle-button-container,
.zelle-qr-container {
    text-align: center;
    flex: 1;
}

.zelle-button-container p,
.zelle-qr-container p {
    margin-top: 15px;
    margin-bottom: 0;
    font-weight: 500;
    color: #666;
}

.zelle-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #131513;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.zelle-button span {
    color: #ffffff;
    font-size: 17px;
}

/* .zelle-button:hover {
  background: #6D1ED4;
} */

.zelle-button img {
  height: 24px;
}

.zelle-or-text {
    margin-top: 30px!important;
    margin-bottom: 5px!important;
    font-size: 16px;
    color: #333;
}
.zelle-qr-code {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.zelle-qr-code.enlarged {
    transform: scale(1.5);
    transition: transform 0.3s ease;
    cursor: zoom-out;
}

.zelle-qr-code:not(.enlarged) {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.zelle-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 0.95rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.zelle-summary-item { 
    background: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border: 1px solid #cba0e2;
}

.zelle-summary p {
    margin: 0.3rem 0;
}
.zelle-disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffeeba;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.zelle-disclaimer p {
    margin: 0;
}

.zelle-notice {
    margin-top: 1.5rem;
}
.zelle-credits {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: #888;
}
.zelle-credits a {
    color: #4493f8;
    text-decoration: underline;
}

.zelle-credits a:hover {
    text-decoration: underline;
}

.zelle-share-btn {
    background: #6D1ED4;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    margin: 5px;
    transition: background-color 0.3s;
}

.zelle-share-btn:hover {
    background: #671cc9;
}

/* Payment confirmation */
.zelle-payment-confirmed {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    animation: slideInDown 0.5s ease-out;
}

.zelle-success-icon {
    font-size: 48px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.zelle-payment-confirmed h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.zelle-payment-confirmed p {
    margin: 0;
    opacity: 0.9;
}

.wph-wc-zelle-thank-you .zelle-order-notes-required-notice {
    font-weight: bold;
    margin: 0px auto 20px;
    font-size: 16PX;
    color: #3a3838;
    text-align: center;
    padding: 8px;
    background: #f4f7fa;
    border-radius: 8px;
    max-width: 650px;
}

@media (max-width: 600px) {
    .zelle-button {
        flex-direction: row;
        gap: 0.25rem;
        padding: 1rem;
    }
    .zelle-button img {
        height: 32px;
    }
    .zelle-qr-code {
        width: 160px;
        height: 160px;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================================
   ADMIN INTERFACE STYLES
   ================================ */

/* Hide default WooCommerce settings table when using custom interface */
.zelle-admin-container ~ table.form-table {
    display: none;
}

/* Hide the standard settings form and only show our save button */
.woocommerce-save-button table.form-table {
    display: none !important;
}

/* Proper spacing for the save button */
.woocommerce-save-button {
    margin: 30px 0 20px 0 !important;
    padding: 20px 30px !important;
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 0 0 8px 8px;
}

.woocommerce-save-button .submit {
    margin: 0 !important;
    padding: 0 !important;
}

.zelle-admin-container {
    max-width: 1200px;
    margin: 20px 0 0 0;
    background: #fff;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.zelle-header {
    background: linear-gradient(135deg, #00d632 0%, #00c12b 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.zelle-header h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 300;
}

.zelle-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

.zelle-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 0;
    margin: 0;
    display: flex;
    overflow-x: auto;
}

/* Override WooCommerce core admin CSS that interferes with our nav */
body.woocommerce_page_wc-settings #mainform .zelle-nav,
body.woocommerce_page_wc-settings #mainform nav.zelle-nav {
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide default WooCommerce settings table when using custom interface */
.zelle-admin-container ~ table.form-table {
    display: none;
}

.zelle-nav-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
    font-weight: 500;
    padding: 20px 10px;
    border-bottom: 3px solid transparent;
    position: relative;
}

.zelle-nav-item:hover {
    background: #e9ecef;
    color: #495057;
}

.zelle-nav-item.active {
    color: #00d632;
    border-bottom-color: #00d632;
    background: #fff;
}

.zelle-nav-item .nav-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

.zelle-content {
    padding: 0;
}

.zelle-tab-panel {
    display: none;
    padding: 40px;
    min-height: 500px;
}

.zelle-tab-panel.active {
    display: block;
}

.zelle-section {
    text-align: center;
    margin: 1.5rem 0;
}

.zelle-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.zelle-section-icon {
    background: #00d632;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.zelle-section h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.zelle-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.zelle-form-group {
    margin-bottom: 25px;
}

.zelle-form-group.full-width {
    grid-column: 1 / -1;
}

.zelle-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.zelle-input, .zelle-textarea, .zelle-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.zelle-input:focus, .zelle-textarea:focus, .zelle-select:focus {
    outline: none;
    border-color: #00d632;
    box-shadow: 0 0 0 3px rgba(0, 214, 50, 0.1);
}

.zelle-textarea {
    min-height: 100px;
    resize: vertical;
}

.zelle-help-text {
    font-size: 13px;
    color: #6c757d;
    margin-top: 5px;
    line-height: 1.4;
}

.zelle-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zelle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.zelle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.zelle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 26px;
}

.zelle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .zelle-slider {
    background-color: #00d632;
}

input:checked + .zelle-slider:before {
    transform: translateX(24px);
}

.zelle-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.zelle-highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #d1f1d1 100%);
    border: 1px solid #00d632;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.zelle-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    color: #856404;
}

.zelle-success {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    color: #0c5460;
}

.zelle-btn {
    background: #6D1ED4;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.zelle-btn:hover {
    background: #671cc9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.zelle-btn-secondary {
    background: #6c757d;
}

.zelle-btn-secondary:hover {
    background: #5a6268;
}

.zelle-btn-success {
    background: #28a745;
}

.zelle-btn-success:hover {
    background: #218838;
}

.zelle-webhook-url {
    background: #f8f9fa;
    border: 2px dashed #3d95ce;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    word-break: break-all;
    margin: 15px auto 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    align-content: center;
    gap: 7px;
    max-width: 650px;
}

/* .zelle-webhook-url .copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #6D1ED4;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
} */

/* ================================
   CHECKOUT STYLES
   ================================ */

.wc_payment_method.payment_method_zelle img {
    height: 24px;
    width: auto;
    vertical-align: middle;
    margin-left: 5px;
}

/* Loading state */
.zelle-loading {
    opacity: 0.6;
    pointer-events: none;
}

.zelle-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #00d632;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   ACCESSIBILITY IMPROVEMENTS
   ================================ */

.zelle-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.zelle-nav-item:focus,
.zelle-btn:focus,
.zelle-input:focus,
.zelle-textarea:focus {
    outline: 2px solid #6D1ED4;
    outline-offset: 2px;
}

.zelle-filters select:focus,
.zelle-filters button:focus {
    outline: 2px solid #6D1ED4;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    
    .zelle-filters {
        flex-direction: column;
        align-items: stretch !important;
    }
    
    .zelle-filters > * {
        margin: 0 0 10px 0 !important;
    }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
    .zelle-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .zelle-payment-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .wph-wc-zelle-thank-you {
        margin: 10px;
        padding: 15px;
    }
    
    .zelle-qr-code {
        max-width: 150px;
    }
    
    .zelle-modal {
        width: 95%;
        margin: 20px;
    }
    
    .zelle-modal-body {
        padding: 15px;
    }
    
    .zelle-qr-large img {
        max-width: 200px;
    }
    
    .zelle-nav {
        flex-direction: column;
    }
    
    .zelle-nav-item {
        min-width: auto;
    }
    
    .zelle-tab-panel {
        padding: 20px;
    }
    
    .zelle-header {
        padding: 20px;
    }
    
    .zelle-header h1 {
        font-size: 24px;
    }
    
    .zelle-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .zelle-section-icon {
        margin-right: 0;
    }
    
    .zelle-radio-group {
        flex-direction: column;
    }
    
    .woocommerce-save-button {
        padding: 15px 20px !important;
    }
}

/* ================================
   HIGH CONTRAST MODE SUPPORT
   ================================ */

@media (prefers-contrast: high) {
    .zelle-btn {
        border: 2px solid currentColor;
    }
    
    .zelle-nav-item.active {
        border: 2px solid #6D1ED4;
    }
    
    .zelle-card {
        border: 2px solid currentColor;
    }
}

/* ================================
   PRINT STYLES
   ================================ */

@media print {
    .zelle-admin-container {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .zelle-nav {
        display: none;
    }
    
    .zelle-tab-panel {
        display: block !important;
        page-break-inside: avoid;
    }
    
    .zelle-btn {
        display: none;
    }
    
    .zelle-code-block {
        background: #f5f5f5 !important;
        color: #000 !important;
        border: 1px solid #ccc;
    }
    
    .woocommerce-save-button {
        display: none;
    }
}

/* ================================
   PAGINATION STYLES
   ================================ */

.zelle-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.zelle-pagination .button {
    background: #6D1ED4;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.zelle-pagination .button:hover {
    background: #671cc9;
    color: white;
}

.zelle-pagination .button:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.zelle-checkbox-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 10px 0;
}

.zelle-checkbox-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    cursor: pointer;
    background: #edf1f5;
    transition: background-color 0.2s;
}

/* ================================
   RECEIPT STYLES
   ================================ */

.zelle-filters {
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 0px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #e9ecef;
}

.receipts-list {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.receipt-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #d4dce4;
}

.receipt-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.receipt-success {
    border-left: 6px solid #10b981;
}

.receipt-warning {
    border-left: 6px solid #f59e0b;
}

.receipt-error {
    border-left: 6px solid #ef4444;
}

.receipt-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.receipt-info {
    flex: 1;
}

.receipt-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.order-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #efefef, #cad8ec);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.receipt-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.receipt-date {
    font-size: 0.875rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.receipt-source {
    font-size: 0.75rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-processed, 
.status-resolved {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
    border: 1px solid #86efac;
}

.status-needs_review {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border: 1px solid #fbbf24;
}

.status-error {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    color: #991b1b;
    border: 1px solid #f87171;
}

.receipt-details {
    padding: 24px;
}

.amount-section {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.amount-info {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: center;
}

.amount-item {
    text-align: center;
}

.amount-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.received-amount {
    font-weight: 700;
    color: #10b981;
    font-size: 1.5rem;
}

.expected-amount {
    font-weight: 600;
    color: #64748b;
    font-size: 1.25rem;
}

.amount-status {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    font-size: 1.25rem;
}

.receipt-notes {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
    border-left: 4px solid #10b981;
    margin-bottom: 20px;
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.order-actions-button {
    margin-right: 10px;
}

.order-actions-button {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.order-actions-button-primary {
    background: #2271b1;
    color: #fff!important   ;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.order-actions-button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.order-actions-button-danger {
    background: linear-gradient(135deg,rgb(255, 255, 255),rgb(255, 255, 255));
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.order-actions-button-danger:hover {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    transform: translateY(-1px);
}

.zelle-order-status {
    margin-left: auto;
    font-size: 0.75rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.zelle-stats-dashboard {
    display: flex;
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
}

.stat-card {
    background: #ffffff;
    padding: 15px; 
    border-radius: 6px;
    border-left: 4px solid #00d632!important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    color: #1c1c1c;
    width: calc(50% - 7.5px);
    box-sizing: border-box;
}

.stat-card h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #626262;
}

.stat-card .stat-value {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
}

/* Add to the thank you page styles section */
.zelle-instructions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

.zelle-instructions h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.zelle-instructions ol {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    display: inline-block;
    text-align: left;
}

.zelle-instructions li {
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.zelle-instructions li:last-child {
    border-bottom: none;
}