*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --bg: #0f0e0c; --bg2: #1a1916; --bg3: #242220;
    --cream: #f0e8d8; --cream2: #c8bfad;
    --amber: #e8a830; --amber2: #f5c560;
    --muted: #6b6660;
    --border: rgba(240,232,216,0.08);
    --border2: rgba(240,232,216,0.15);
    --amber-bg: rgba(232,168,48,0.1);
    --amber-border: rgba(232,168,48,0.25);
    --green: #2e7d5a; --green-bg: rgba(46,125,90,0.15);
    --red: #c0392b; --red-bg: rgba(192,57,43,0.15);
    --radius: 10px;
  }
  html, body { height: 100%; font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--cream); font-weight: 300; line-height: 1.6; overflow-x: hidden; }


  /* ONBOARDING */
  #onboardingScreen { flex-direction: column; align-items: center; justify-content: flex-start; padding: 2rem 1.5rem; min-height: 100vh; overflow-y: auto; }
  .onboard-wrap { width: 100%; max-width: 480px; padding-top: 2rem; }
  .onboard-logo { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.5rem; color: var(--cream); margin-bottom: 0.25rem; }
  .onboard-logo span { color: var(--amber); }
  .onboard-step { display: none; }
  .onboard-step.active { display: block; }
  .onboard-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; margin-top: 1.5rem; }
  .onboard-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
  .progress-bar { display: flex; gap: 6px; margin-bottom: 2rem; }
  .progress-step { height: 3px; flex: 1; border-radius: 2px; background: var(--border2); transition: background 0.3s; }
  .progress-step.done { background: var(--amber); }
  .type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 1.5rem; }
  .type-card { background: var(--bg2); border: 2px solid var(--border); border-radius: 12px; padding: 1.1rem; cursor: pointer; transition: all 0.15s; text-align: center; }
  .type-card:hover { border-color: var(--border2); background: var(--bg3); }
  .type-card.selected { border-color: var(--amber); background: var(--amber-bg); }
  .type-card-icon { font-size: 1.6rem; margin-bottom: 6px; }
  .type-card-label { font-size: 0.82rem; font-weight: 500; color: var(--cream); }
  .class-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
  .class-item { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: all 0.15s; }
  .class-item:hover { background: var(--bg3); }
  .class-item.selected { border-color: var(--amber-border); background: var(--amber-bg); }
  .class-check { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; transition: all 0.15s; }
  .class-item.selected .class-check { background: var(--amber); border-color: var(--amber); color: var(--bg); }
  .class-name { font-size: 0.9rem; color: var(--cream); flex: 1; }
  .class-fee-inputs { display: flex; gap: 8px; margin-top: 8px; display: none; }
  .class-item.selected .class-fee-inputs { display: flex; }
  .fee-input-wrap { flex: 1; }
  .fee-input-wrap label { font-size: 0.65rem; color: var(--muted); display: block; margin-bottom: 3px; }
  .fee-input-wrap input { width: 100%; background: var(--bg3); border: 1px solid var(--border2); border-radius: 6px; padding: 6px 8px; color: var(--cream); font-family: "DM Sans", sans-serif; font-size: 0.85rem; outline: none; }
  .custom-class-row { display: flex; gap: 8px; margin-top: 10px; }
  .custom-class-row input { flex: 1; background: var(--bg2); border: 1px solid var(--border2); border-radius: 10px; padding: 10px 14px; color: var(--cream); font-family: "DM Sans", sans-serif; font-size: 0.9rem; outline: none; }
  .custom-class-row input::placeholder { color: var(--muted); }
  .btn-add-custom { background: var(--bg2); border: 1px solid var(--border2); border-radius: 10px; padding: 10px 14px; color: var(--amber); font-size: 0.9rem; cursor: pointer; white-space: nowrap; }
  .btn-add-custom:hover { background: var(--bg3); }
  .onboard-nav { display: flex; gap: 10px; margin-top: 1rem; padding-bottom: 2rem; }

  /* SCREENS */
  .screen { display: none; min-height: 100vh; }
  .screen.active { display: flex; }

  /* ── LOGIN SCREEN ── */
  #loginScreen { align-items: center; justify-content: center; padding: 2rem; background: var(--bg); position: relative; overflow: hidden; }
  .login-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,168,48,0.06) 0%, transparent 70%); pointer-events: none; }
  .login-box { width: 100%; max-width: 380px; position: relative; z-index: 1; }
  .login-logo { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.8rem; color: var(--cream); letter-spacing: -0.02em; margin-bottom: 0.25rem; }
  .login-logo span { color: var(--amber); }
  .login-tagline { font-size: 0.85rem; color: var(--muted); margin-bottom: 2.5rem; }
  .login-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: 14px; padding: 2rem; }
  .login-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 1.5rem; }
  .field { margin-bottom: 1rem; }
  .field label { display: block; font-size: 0.78rem; color: var(--cream2); margin-bottom: 6px; font-weight: 400; }
  .field input { width: 100%; background: var(--bg3); border: 1px solid var(--border2); border-radius: var(--radius); padding: 0.8rem 1rem; color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 300; outline: none; transition: border-color 0.2s; }
  .field input:focus { border-color: var(--amber-border); }
  .field input::placeholder { color: var(--muted); }
  .forgot { font-size: 0.75rem; color: var(--amber); text-decoration: none; float: right; margin-top: -2px; }
  .btn-primary { width: 100%; background: var(--amber); color: var(--bg); border: none; border-radius: var(--radius); padding: 0.9rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.1s; margin-top: 0.5rem; }
  .btn-primary:hover { background: var(--amber2); }
  .btn-primary:active { transform: scale(0.98); }
  .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
  .login-divider { text-align: center; font-size: 0.75rem; color: var(--muted); margin: 1.25rem 0; }
  .btn-secondary { width: 100%; background: transparent; color: var(--cream2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 0.9rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 400; cursor: pointer; transition: background 0.2s; }
  .btn-secondary:hover { background: var(--bg3); }
  .error-msg { background: var(--red-bg); border: 1px solid rgba(192,57,43,0.3); border-radius: var(--radius); padding: 0.75rem 1rem; font-size: 0.82rem; color: #e88; margin-bottom: 1rem; display: none; }
  .success-msg { background: var(--green-bg); border: 1px solid rgba(46,125,90,0.3); border-radius: var(--radius); padding: 0.75rem 1rem; font-size: 0.82rem; color: #7dcca8; margin-bottom: 1rem; display: none; }

  /* ── SETUP SCREEN ── */
  #setupScreen { flex-direction: column; align-items: center; justify-content: center; padding: 2rem; }
  .setup-box { width: 100%; max-width: 480px; }
  .setup-step { background: var(--bg2); border: 1px solid var(--border2); border-radius: 14px; padding: 2rem; margin-bottom: 1rem; }
  .setup-step h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
  .setup-step p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
  .step-indicator { display: flex; gap: 6px; margin-bottom: 2rem; }
  .step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bg3); border: 1px solid var(--border2); }
  .step-dot.active { background: var(--amber); border-color: var(--amber); }
  .step-dot.done { background: var(--green); border-color: var(--green); }

  /* ── MAIN APP ── */
  #appScreen { flex-direction: column; }
  .app-header { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
  .app-logo { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1rem; color: var(--cream); }
  .app-logo span { color: var(--amber); }
  .app-school-name { font-size: 0.68rem; color: var(--muted); margin-top: 1px; }
  .app-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--amber-bg); border: 1px solid var(--amber-border); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 500; color: var(--amber); cursor: pointer; flex-shrink: 0; }
  .app-content { flex: 1; overflow-y: auto; padding-bottom: 80px; }
  .bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg2); border-top: 1px solid var(--border); display: flex; padding: 8px 0 max(12px, env(safe-area-inset-bottom)); z-index: 50; }
  .nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; cursor: pointer; padding: 4px 0; }
  .nav-icon { font-size: 1.1rem; }
  .nav-label { font-size: 0.62rem; color: var(--muted); font-weight: 400; transition: color 0.2s; }
  .nav-item.active .nav-label { color: var(--amber); }

  /* VIEWS */
  .view { display: none; padding: 16px; }
  .view.active { display: block; }

  /* DASHBOARD */
  .dash-greeting { margin-bottom: 16px; }
  .dash-greeting h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--cream); }
  .dash-greeting p { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
  .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
  .stat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
  .stat-card.highlight { border-color: var(--amber-border); background: var(--amber-bg); }
  .stat-val { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--cream); line-height: 1; }
  .stat-card.highlight .stat-val { color: var(--amber); }
  .stat-lbl { font-size: 0.68rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
  .section-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
  .section-hdr h3 { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
  .section-hdr a { font-size: 0.72rem; color: var(--amber); text-decoration: none; cursor: pointer; }
  .alert-item { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; margin-bottom: 6px; cursor: pointer; transition: background 0.15s; }
  .alert-item:hover { background: var(--bg3); }
  .alert-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
  .alert-dot.red { background: var(--red); }
  .alert-dot.amber { background: var(--amber); }
  .alert-dot.green { background: var(--green); }
  .alert-text { font-size: 0.8rem; color: var(--cream2); line-height: 1.4; flex: 1; }
  .alert-text strong { color: var(--cream); font-weight: 500; }
  .empty-state { text-align: center; padding: 3rem 1rem; color: var(--muted); font-size: 0.875rem; }
  .empty-icon { font-size: 2rem; margin-bottom: 0.75rem; }

  /* STUDENTS VIEW */
  .search-bar { background: var(--bg2); border: 1px solid var(--border2); border-radius: 10px; padding: 10px 14px; font-size: 0.9rem; color: var(--cream); font-family: 'DM Sans', sans-serif; width: 100%; outline: none; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
  .search-bar input { background: transparent; border: none; outline: none; color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; flex: 1; }
  .search-bar input::placeholder { color: var(--muted); }
  .student-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 12px; margin-bottom: 8px; cursor: pointer; transition: background 0.15s; }
  .student-card:hover { background: var(--bg3); }
  .stu-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--bg3); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 500; color: var(--amber); flex-shrink: 0; }
  .stu-name { font-size: 0.9rem; font-weight: 500; color: var(--cream); }
  .stu-classes { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
  .stu-amount { font-size: 0.9rem; font-weight: 500; color: var(--amber); margin-left: auto; text-align: right; flex-shrink: 0; }
  .stu-status { font-size: 0.65rem; margin-top: 2px; text-align: right; }
  .stu-status.paid { color: var(--green); }
  .stu-status.unpaid { color: var(--red); }
  .stu-status.pending { color: var(--amber); }
  .stu-status.none { color: var(--muted); }
  .fab { position: fixed; bottom: 80px; right: 20px; width: 52px; height: 52px; background: var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--bg); box-shadow: 0 4px 20px rgba(232,168,48,0.35); cursor: pointer; border: none; transition: transform 0.15s, background 0.15s; z-index: 40; }
  .fab:hover { background: var(--amber2); transform: scale(1.05); }

  /* INVOICES VIEW */
  .invoice-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 8px; cursor: pointer; transition: background 0.15s; }
  .invoice-card:hover { background: var(--bg3); }
  .invoice-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
  .invoice-student { font-size: 0.9rem; font-weight: 500; color: var(--cream); }
  .invoice-amount { font-size: 1rem; font-weight: 500; color: var(--amber); }
  .invoice-meta { display: flex; justify-content: space-between; align-items: center; }
  .invoice-term { font-size: 0.72rem; color: var(--muted); }
  .status-badge { font-size: 0.65rem; font-weight: 500; padding: 3px 9px; border-radius: 999px; }
  .status-badge.paid { background: var(--green-bg); color: #7dcca8; border: 1px solid rgba(46,125,90,0.3); }
  .status-badge.sent { background: var(--amber-bg); color: var(--amber); border: 1px solid var(--amber-border); }
  .status-badge.overdue { background: var(--red-bg); color: #e88; border: 1px solid rgba(192,57,43,0.3); }
  .status-badge.draft { background: var(--bg3); color: var(--muted); border: 1px solid var(--border2); }
  .status-badge.pending_confirmation { background: rgba(123,94,167,0.15); color: #b39ddb; border: 1px solid rgba(123,94,167,0.3); }

  /* SETTINGS VIEW */
  .settings-section { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 16px; }
  .settings-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.15s; }
  .settings-row:last-child { border-bottom: none; }
  .settings-row:hover { background: var(--bg3); }
  .settings-label { font-size: 0.875rem; color: var(--cream); }
  .settings-value { font-size: 0.8rem; color: var(--muted); }
  .settings-arrow { color: var(--muted); font-size: 0.75rem; }

  /* MODAL */
  .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 100; display: none; align-items: flex-end; justify-content: center; }
  .modal-overlay.active { display: flex; }
  .modal { background: var(--bg2); border: 1px solid var(--border2); border-radius: 20px 20px 0 0; width: 100%; max-width: 480px; padding: 1.5rem; max-height: 90vh; overflow-y: auto; animation: slideUp 0.25s ease; }
  @keyframes slideUp { from{transform:translateY(100%)}to{transform:translateY(0)} }
  .modal-handle { width: 40px; height: 4px; background: var(--border2); border-radius: 2px; margin: 0 auto 1.25rem; }
  .modal-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--cream); margin-bottom: 1.25rem; }
  .modal-actions { display: flex; gap: 10px; margin-top: 1.25rem; }
  .btn-ghost { flex: 1; background: transparent; color: var(--cream2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 0.85rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; cursor: pointer; }
  .btn-ghost:hover { background: var(--bg3); }


  .password-wrap { position: relative; }
  .password-wrap input { padding-right: 2.8rem; }
  .pw-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1rem; padding: 0; line-height: 1; }
  .pw-toggle:hover { color: var(--cream2); }

  /* TOOLTIP TOUR */
  .tour-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; pointer-events: none; }
  .tour-bubble { position: fixed; z-index: 201; background: white; color: #1a1916; border-radius: 14px; padding: 16px 18px; max-width: 260px; box-shadow: 0 8px 32px rgba(0,0,0,0.25); pointer-events: all; }
  .tour-bubble::before { content: ''; position: absolute; width: 12px; height: 12px; background: white; transform: rotate(45deg); }
  .tour-bubble.arrow-bottom::before { bottom: -6px; left: 50%; margin-left: -6px; }
  .tour-bubble.arrow-top::before { top: -6px; left: 50%; margin-left: -6px; }
  .tour-bubble.arrow-left::before { left: -6px; top: 50%; margin-top: -6px; }
  .tour-title { font-size: 0.85rem; font-weight: 600; color: #1a1916; margin-bottom: 4px; }
  .tour-text { font-size: 0.78rem; color: #6b6660; line-height: 1.5; margin-bottom: 12px; }
  .tour-actions { display: flex; justify-content: space-between; align-items: center; }
  .tour-next { background: #e8a830; color: #0f0e0c; border: none; border-radius: 6px; padding: 6px 14px; font-size: 0.78rem; font-weight: 500; cursor: pointer; }
  .tour-skip { font-size: 0.72rem; color: #6b6660; cursor: pointer; text-decoration: underline; }
  .tour-dots { display: flex; gap: 4px; }
  .tour-dot { width: 6px; height: 6px; border-radius: 50%; background: #e5e5e5; }
  .tour-dot.active { background: #e8a830; }
  .tour-highlight { position: fixed; z-index: 200; border-radius: 8px; box-shadow: 0 0 0 4px #e8a830, 0 0 0 9999px rgba(0,0,0,0.5); pointer-events: none; transition: all 0.3s ease; }

  /* LOADING */
  .loading-spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.7s linear infinite; }
  @keyframes spin { to{transform:rotate(360deg)} }

  /* PAGE HEADER */
  .page-header { margin-bottom: 18px; }
  .page-header h1 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--cream); }
  .page-header p { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

  /* FILTER TABS */
  .filter-tabs { display: flex; gap: 6px; margin-bottom: 14px; overflow-x: auto; scrollbar-width: none; }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab { padding: 6px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 400; border: 1px solid var(--border2); color: var(--cream2); background: transparent; cursor: pointer; white-space: nowrap; transition: all 0.15s; }
  .filter-tab.active { background: var(--amber); color: var(--bg); border-color: var(--amber); font-weight: 500; }

  /* PRINT STYLES */
  @media print {
    body * { visibility: hidden; }
    #printInvoice, #printInvoice * { visibility: visible; }
    #printInvoice { position: fixed; left: 0; top: 0; width: 100%; padding: 40px; background: white; color: #1a1916; }
    .print-hide { display: none !important; }
  }

  /* PRINT INVOICE */
  #printInvoice { display: none; }
  .inv-print-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid #e8a830; }
  .inv-print-logo { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.6rem; color: #1a1916; }
  .inv-print-logo span { color: #e8a830; }
  .inv-print-school { font-size: 0.9rem; color: #6b6660; margin-top: 4px; }
  .inv-print-meta { text-align: right; font-size: 0.85rem; color: #6b6660; }
  .inv-print-meta strong { display: block; font-size: 1.1rem; color: #1a1916; margin-bottom: 4px; }
  .inv-print-to { margin-bottom: 2rem; }
  .inv-print-to-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #6b6660; margin-bottom: 4px; }
  .inv-print-to-name { font-size: 1rem; font-weight: 500; color: #1a1916; }
  .inv-print-to-sub { font-size: 0.85rem; color: #6b6660; }
  .inv-print-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
  .inv-print-table th { text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #6b6660; padding: 8px 0; border-bottom: 1px solid #e5e5e5; }
  .inv-print-table th:last-child { text-align: right; }
  .inv-print-table td { padding: 10px 0; border-bottom: 1px solid #f5f5f5; font-size: 0.9rem; color: #1a1916; vertical-align: top; }
  .inv-print-table td:last-child { text-align: right; font-weight: 500; }
  .inv-print-table td small { display: block; font-size: 0.75rem; color: #6b6660; margin-top: 2px; }
  .inv-print-totals { width: 280px; margin-left: auto; margin-bottom: 2rem; }
  .inv-print-total-row { display: flex; justify-content: space-between; font-size: 0.875rem; color: #6b6660; padding: 5px 0; }
  .inv-print-total-row.discount { color: #2e7d5a; }
  .inv-print-total-row.grand { font-size: 1.1rem; font-weight: 600; color: #1a1916; padding-top: 10px; border-top: 2px solid #e8a830; margin-top: 4px; }
  .inv-print-bank { background: #f9f7f4; border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
  .inv-print-bank-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #6b6660; margin-bottom: 6px; }
  .inv-print-bank-details { font-size: 0.875rem; color: #1a1916; }
  .inv-print-footer { text-align: center; font-size: 0.75rem; color: #6b6660; border-top: 1px solid #e5e5e5; padding-top: 1rem; }