:root {
    --primary-blue: #38bdf8;
    --secondary-teal: #818cf8;
    --card-bg: rgba(15, 23, 42, 0.85); 
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --border-color: rgba(255, 255, 255, 0.15);
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    background-color: #0f172a; /* Deep dark fallback color */
    color: var(--text-main); 
    margin: 0; 
    padding: 40px 20px; 
    display: flex; 
    justify-content: center; 
    min-height: 100vh; 
    position: relative; 
}

/* ========================================================= */
/* --- 4-STATE DYNAMIC BACKGROUND IMAGES ---                 */
/* ========================================================= */
body::before, body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -10; 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: opacity; 
    transition: opacity 1.5s ease-in-out; /* Smooth fade when clicking toggle */
}

/* Image 1 Layer (NIGHT) */
body::before { background-image: url('https://raw.githubusercontent.com/DC-database/hub/refs/heads/main/Image1.png'); opacity: 1; }
/* Image 2 Layer (DAY) */
body::after { background-image: url('https://raw.githubusercontent.com/DC-database/hub/refs/heads/main/Image2.png'); opacity: 0; }

/* STATE 1: AUTO (Crossfading) */
body.theme-auto::before { animation: fadeOutIn 24s infinite; }
body.theme-auto::after { animation: fadeInOut 24s infinite; }

/* STATE 2: DAY MODE */
body.theme-day::before { opacity: 0 !important; animation: none !important; }
body.theme-day::after { opacity: 1 !important; animation: none !important; }

/* STATE 3: NIGHT MODE */
body.theme-night::before { opacity: 1 !important; animation: none !important; }
body.theme-night::after { opacity: 0 !important; animation: none !important; }

/* STATE 4: BACKGROUND OFF */
body.theme-off::before, body.theme-off::after { opacity: 0 !important; animation: none !important; }

@keyframes fadeOutIn { 0%, 42% { opacity: 1; } 50%, 92% { opacity: 0; } 100% { opacity: 1; } }
@keyframes fadeInOut { 0%, 42% { opacity: 0; } 50%, 92% { opacity: 1; } 100% { opacity: 0; } }

/* ========================================================= */
/* --- NEW TOGGLE BUTTON STYLES ---                          */
/* ========================================================= */
.bg-toggle-btn {
    background: rgba(15, 23, 42, 0.6);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    vertical-align: middle;
}
.bg-toggle-btn:hover {
    background: rgba(56, 189, 248, 0.2);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
    transform: translateY(-1px);
}
.bg-toggle-btn i { font-size: 12px; }


/* ========================================================= */
/* --- MAIN CRYSTAL GLASS CONTAINER ---                      */
/* ========================================================= */
.search-container { 
    background: rgba(15, 23, 42, 0.15); 
    backdrop-filter: blur(2px); 
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%; 
    max-width: 1350px; 
    border-radius: 24px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8); 
    padding: 35px; 
    box-sizing: border-box; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.header { 
    background: rgba(15, 23, 42, 0.85); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 25px; 
    border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 5px;
}
.header-top { display: flex; justify-content: space-between; align-items: center; }
.header-title { display: flex; align-items: center; gap: 15px; }
.icon-wrapper { background: linear-gradient(135deg, #0ea5e9, #8b5cf6); width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; }
.header h1 { margin: 0; color: #ffffff; font-size: 26px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.version-tag { font-size: 12px; background-color: rgba(255,255,255,0.1); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); padding: 4px 10px; border-radius: 12px; font-weight: 700; }
.header p { margin: 10px 0 0 60px; color: var(--text-muted); font-size: 14px; }

.search-box { position: relative; width: 100%; }
.search-box i.search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: 18px; z-index: 2; }
.search-box input { width: 100%; padding: 18px 20px 18px 55px; border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; font-size: 16px; box-sizing: border-box; background-color: rgba(15, 23, 42, 0.85); backdrop-filter: blur(10px); color: #ffffff; transition: border-color 0.2s;}
.search-box input::placeholder { color: #94a3b8; }
.search-box input:focus { outline: none; border-color: var(--primary-blue); background-color: rgba(15, 23, 42, 0.95); }

.filters-row { display: flex; gap: 12px; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 18px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.1); align-items: flex-end; flex-wrap: wrap; margin-bottom: 10px; }
.filters-row.hidden { display: none; }
.filter-group { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 120px; }
.filter-group label { font-size: 12px; font-weight: 700; color: #cbd5e1; display: flex; align-items: center; gap: 6px; }

.filter-group select { 
    width: 100%; 
    padding: 12px; 
    border: 2px solid rgba(255,255,255,0.5); 
    border-radius: 10px; 
    font-size: 13px; 
    font-weight: 700; 
    color: #0f172a; 
    background-color: rgba(255, 255, 255, 0.95); 
    cursor: pointer; 
    outline: none; 
    transition: all 0.2s; 
    height: 45px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.filter-group select:focus { border-color: var(--primary-blue); box-shadow: 0 0 15px rgba(56, 189, 248, 0.6); }
.filter-group select option { background-color: #ffffff; color: #0f172a; font-weight: 600; }

.table-info { 
    background: rgba(15, 23, 42, 0.85); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px; 
    border-radius: 10px; 
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 13px; 
    color: var(--text-muted); 
    font-weight: 600; 
    display: flex; 
    justify-content: space-between; 
}
.last-updated { font-weight: 400; color: #94a3b8; }

.grid-header { 
    display: grid; 
    grid-template-columns: 50px 100px 1.5fr 1.5fr 2fr 1.2fr 110px 120px; 
    background: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.4); 
    padding: 15px 20px; 
    border-radius: 12px; 
    color: #fbbf24; 
    font-weight: 900; 
    font-size: 13px; 
    text-transform: uppercase; 
}

/* ========================================================= */
/* BUTTONS                                                   */
/* ========================================================= */
.action-buttons, .print-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.print-actions { margin-left: auto; }

.refresh-btn, .primary-btn, .secondary-btn, .print-btn {
    background: rgba(15, 23, 42, 0.9);
    color: white;
    border: 1px solid var(--neon-color);
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.refresh-btn:hover, .primary-btn:hover, .secondary-btn:hover, .print-btn:hover {
    background: var(--neon-color);
    color: #0f172a !important;
    box-shadow: 0 0 15px var(--neon-color);
    transform: translateY(-2px);
}

.refresh-btn { --neon-color: #38bdf8; padding: 0 20px; height: 42px; font-size: 13px; }
.primary-btn { --neon-color: #06b6d4; padding: 0 32px; height: 48px; font-size: 15px; }
.secondary-btn { --neon-color: #f43f5e; padding: 0 24px; height: 48px; font-size: 14px; }
.print-btn { padding: 0 24px; height: 48px; font-size: 13px; }

.print-btn:nth-child(1) { --neon-color: #22c55e; } 
.detailed-btn { --neon-color: #d946ef; }           
.project-btn { --neon-color: #0ea5e9; }            
.retention-btn { --neon-color: #f97316; }          

/* ========================================================= */
/* INVOICE RECORDS                                           */
/* ========================================================= */
.grid-body { display: flex; flex-direction: column; gap: 8px; }

.invoice-card { 
    background: rgba(15, 23, 42, 0.15); 
    backdrop-filter: blur(0px) !important; 
    -webkit-backdrop-filter: blur(0px) !important;
    border-radius: 14px; 
    border: 1px solid rgba(255, 255, 255, 0.25); 
    transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s; 
    overflow: hidden; 
    position: relative; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 1px rgba(0,0,0,0.3);
}
.invoice-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: #38bdf8; opacity: 0; transition: opacity 0.2s; }
.invoice-card:hover { transform: translateY(-2px); border-color: rgba(56, 189, 248, 0.6); background: rgba(30, 41, 59, 0.4); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(56, 189, 248, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2); }
.invoice-card:hover::before { opacity: 1; }

.master-grid-row { display: grid; grid-template-columns: 50px 100px 1.5fr 1.5fr 2fr 1.2fr 110px 120px; align-items: center; padding: 16px 20px; cursor: pointer; }
.master-grid-row .grid-cell { font-size: 14px; font-weight: 500; color: #ffffff; text-shadow: 0 1px 3px rgba(0,0,0,0.8); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-right: 15px; }
.master-grid-row .grid-cell:last-child { padding-right: 0; }
.master-grid-row .grid-cell:nth-child(2) { color: #38bdf8 !important; text-shadow: 0 0 5px rgba(56,189,248,0.5); }

.detail-grid-row { display: none; padding: 20px 20px 20px 70px; background-color: rgba(0, 0, 0, 0.3); border-top: 1px solid rgba(255, 255, 255, 0.1); }
.invoice-card.expanded .detail-grid-row { display: block; }
.invoice-card.expanded { border-color: #38bdf8; background: rgba(15, 23, 42, 0.5); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1); }
.invoice-card.expanded::before { opacity: 1; }

.expand-btn { cursor: pointer; color: #ffffff; transition: transform 0.2s, background 0.2s; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.2); }
.invoice-card:hover .expand-btn { background-color: rgba(56, 189, 248, 0.4); color: #ffffff; }
.invoice-card.expanded .expand-btn { transform: rotate(90deg); background: #38bdf8; color: #0f172a; box-shadow: 0 0 10px #38bdf8; }

.status-badge { padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; color: #38bdf8; background: rgba(56, 189, 248, 0.15); border: 1px solid rgba(56, 189, 248, 0.3); }
.status-badge.verified { color: #4ade80; background: rgba(74, 222, 128, 0.15); border: 1px solid rgba(74, 222, 128, 0.3); }
.closed-badge { color: #f87171; background: rgba(248, 113, 113, 0.15); border: 1px solid rgba(248, 113, 113, 0.3); }
.epicor-badge { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; color: #cbd5e1; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); display: inline-block; }

.sub-table-header { font-weight: 800; font-size: 13px; color: #38bdf8; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.sub-table-wrapper { background: rgba(15, 23, 42, 0.4); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }

.sub-table { width: 100%; border: none; margin: 0; border-collapse: collapse; text-align: left; }
.sub-table thead { background: linear-gradient(135deg, #0284c7, #0ea5e9); }
.sub-table th { background: transparent; color: #ffffff; font-size: 11px; font-weight: 800; padding: 12px 16px; border-bottom: none; text-transform: uppercase; }
.sub-table td { padding: 12px 16px; font-size: 13px; color: #ffffff; border-bottom: 1px solid rgba(255,255,255,0.1); text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.sub-table tr:last-child td { border-bottom: none; }

.sub-table-footer { display: flex; justify-content: flex-end; gap: 24px; padding: 12px 20px; background: rgba(0, 0, 0, 0.4); border-top: 1px solid rgba(255,255,255,0.1); align-items: center; flex-wrap: wrap;}
.sub-stat { display: flex; gap: 8px; align-items: center; color: #cbd5e1; font-size: 13px;}
.sub-stat strong { color: #ffffff; font-size: 14px; font-weight: 700; }
.sub-stat.highlight strong { color: #f87171; font-size: 15px; text-shadow: 0 0 5px rgba(248,113,113,0.5); } 

.grand-summary-card { background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 20px 25px; color: white; display: flex; justify-content: space-between; align-items: center; margin-top: 5px; flex-wrap: wrap; gap: 20px;}
.grand-summary-title { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 800; }
.grand-summary-title i { font-size: 24px; color: #38bdf8; }
.grand-summary-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.g-stat { display: flex; flex-direction: column; text-align: right; gap: 4px; }
.g-stat span { font-size: 12px; font-weight: 600; color: #94a3b8; text-transform: uppercase; }
.g-stat strong { font-size: 18px; font-weight: 800; color: #4ade80; } 
.g-stat:nth-child(2) strong { color: #d946ef; } 
.g-stat:nth-child(3) strong { color: #0ea5e9; } 
.g-stat.highlight strong { color: #f87171; font-size: 20px; text-shadow: 0 0 10px rgba(248,113,113,0.6); } 

.no-commits-msg { color: #94a3b8; font-style: italic; font-size: 13px; padding: 20px; }
.loading-state, .empty-state { text-align: center; padding: 60px 20px; color: #cbd5e1; font-size: 16px; background: rgba(15, 23, 42, 0.85); border: 1px dashed rgba(255,255,255,0.2); border-radius: 14px; backdrop-filter: blur(8px); }
.error-state { color: #fca5a5; background: rgba(153, 27, 27, 0.8); border: 1px solid rgba(248, 113, 113, 0.5); padding: 40px; text-align: center; border-radius: 14px; backdrop-filter: blur(8px); }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.4); }

/* ========================================================= */
/* PRINT STYLES REMAIN UNCHANGED                             */
/* ========================================================= */
#printArea { display: none; }

@media print {
    @page { margin: 10mm 8mm; }
    body { display: block !important; min-height: auto !important; background: #fff !important; padding: 0 !important; margin: 0 !important; color: #1e293b !important; text-shadow: none !important;}
    body::before, body::after { display: none !important; }
    .search-container { display: none !important; }
    #printArea { display: block !important; width: 100%; max-width: none !important; overflow: visible !important; }
    .print-header { text-align: center; margin-bottom: 25px; padding-bottom: 15px; position: relative; }
    .print-header::after { content: ''; position: absolute; bottom: 0; left: 35%; right: 35%; height: 3px; background: #00748C !important; border-radius: 3px; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .print-header h2 { margin: 0 0 6px 0; font-size: 20px; color: #003A5C !important; text-transform: uppercase; letter-spacing: 1px; font-weight: 800; }
    .print-header p { margin: 0; color: #64748b !important; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px;}
    .print-header .print-filters { margin-top: 6px; color: #00748C !important; font-weight: 800; font-size: 11px; }
    .print-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-bottom: 30px; font-size: 9px; table-layout: fixed; border: 3px solid #003A5C !important; border-radius: 8px; overflow: hidden; }
    .print-table th, .print-table td { padding: 8px 6px; text-align: left; word-wrap: break-word; overflow-wrap: break-word; }
    .print-table th { background-color: #f8fafc !important; color: #003A5C !important; font-weight: 800; text-transform: uppercase; -webkit-print-color-adjust: exact; print-color-adjust: exact; border-bottom: 2px solid #003A5C !important; }
    .print-table td { color: #334155 !important; border-bottom: 1px solid #e2e8f0 !important; }
    .print-table tr:nth-child(even) td { background-color: #f8fafc !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .print-table tr:last-child td { border-bottom: none; }
    .print-table td.num { text-align: right; word-break: break-all; font-family: monospace; font-size: 10px; font-weight: 600;}
    .print-table th:nth-child(1) { width: 12%; } 
    .print-table th:nth-child(2) { width: 10%; } 
    .print-table th:nth-child(3) { width: 18%; } 
    .print-table th:nth-child(4) { width: 9%; } 
    .print-table th:nth-child(5) { width: 12%; } 
    .print-table th:nth-child(6) { width: 12%; } 
    .print-table th:nth-child(7) { width: 12%; color:#ea580c !important; } 
    .print-table td:nth-child(7) { color:#ea580c !important; font-weight: bold; }
    .print-table th:nth-child(8) { width: 15%; } 
    .print-project-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-bottom: 30px; font-size: 9px; table-layout: fixed; border: 3px solid #003A5C !important; border-radius: 8px; overflow: hidden; }
    .print-project-table th, .print-project-table td { padding: 8px 6px; text-align: left; word-wrap: break-word; overflow-wrap: break-word; }
    .print-project-table th { background-color: #f8fafc !important; color: #003A5C !important; font-weight: 800; text-transform: uppercase; -webkit-print-color-adjust: exact; print-color-adjust: exact; border-bottom: 2px solid #003A5C !important; }
    .print-project-table td { color: #334155 !important; border-bottom: 1px solid #e2e8f0 !important; }
    .print-project-table tr:nth-child(even) td { background-color: #f8fafc !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .print-project-table tr:last-child td { border-bottom: none; }
    .print-project-table td.num { text-align: right; font-family: monospace; font-size: 10px; font-weight: 700;}
    .print-project-table th:nth-child(1) { width: 15%; } 
    .print-project-table th:nth-child(2) { width: 15%; } 
    .print-project-table th:nth-child(3) { width: 7%; text-align: center;} 
    .print-project-table td:nth-child(3) { text-align: center; font-weight: bold;} 
    .print-project-table th:nth-child(4) { width: 13%; text-align: right;} 
    .print-project-table th:nth-child(5) { width: 13%; text-align: right;} 
    .print-project-table th:nth-child(6) { width: 11%; text-align: right; color: #ea580c !important;} 
    .print-project-table td:nth-child(6) { color: #ea580c !important;} 
    .print-project-table th:nth-child(7) { width: 13%; text-align: right;} 
    .print-project-table th:nth-child(8) { width: 13%; text-align: right;} 
    .print-detailed-po-block { border: 3px solid #003A5C !important; border-radius: 8px; margin-bottom: 18px; page-break-inside: avoid; overflow: hidden; }
    .print-po-header { background-color: #003A5C !important; color: #ffffff !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; padding: 10px 12px; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #003A5C !important; }
    .po-title { font-weight: 800; font-size: 12px; color: #ffffff !important;}
    .po-title span { color: #ffffff !important; font-weight: bold !important; margin-left: 8px; font-size: 10px; }
    .po-inv-amt { font-weight: 800; font-size: 12px; color: #ffffff !important; background: rgba(255,255,255,0.15) !important; padding: 4px 10px; border-radius: 6px; }
    .print-sub-table { width: 100%; border-collapse: collapse; margin: 0; }
    .print-sub-table th, .print-sub-table td { padding: 6px 12px; text-align: left; }
    .print-sub-table th { background-color: #f1f5f9 !important; color: #475569 !important; font-size: 9px; font-weight: 800; text-transform: uppercase; -webkit-print-color-adjust: exact; print-color-adjust: exact; border-bottom: 1px solid #cbd5e1 !important; }
    .print-sub-table td { font-size: 10px; color: #334155 !important; border-bottom: 1px solid #f1f5f9 !important; }
    .print-sub-table tr:last-child td { border-bottom: none; }
    .print-sub-table .num { text-align: right; font-family: monospace; font-size: 11px; font-weight: 600;}
    .print-po-footer { background-color: #f8fafc !important; color: #0f172a !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; padding: 8px 12px; display: flex; justify-content: flex-end; gap: 25px; border-top: 2px solid #003A5C !important; font-weight: 600; font-size: 11px; align-items: center;}
    .print-po-footer .highlight { color: #ef4444 !important; font-weight: 800; font-size: 12px;} 
    .print-no-srv { padding: 12px; font-style: italic; color: #94a3b8 !important; font-size: 10px; text-align: center; }
    .print-summary-box { display: flex; justify-content: flex-end; margin-top: 30px; page-break-inside: avoid; }
    .print-summary-table { border-collapse: separate; border-spacing: 0; width: 380px; border: 3px solid #003A5C !important; border-radius: 8px; overflow: hidden; }
    .print-summary-table td { padding: 10px 12px; font-size: 10px; color: #334155 !important; border-bottom: 1px solid #e2e8f0 !important; }
    .print-summary-table td:first-child { font-weight: 800; text-transform: uppercase; font-size: 10px; letter-spacing: 0.5px;}
    .print-summary-table td:last-child { text-align: right; font-family: monospace; font-size: 13px; font-weight: 800; }
    .balance-row { background-color: #003A5C !important; color: #ffffff !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; align-items: center; }
    .balance-row td { font-weight: 800 !important; color: #ffffff !important; border-bottom: none !important;}
    .balance-row td:first-child { font-size: 10px !important; border-top: none; }
    .balance-row td:last-child { font-size: 15px !important; color: #ef4444 !important; font-weight: 900 !important; border-top: none; }
}