/* 
  MARVELUGA.COM - LAUNCH PRODUCTION DESIGN SYSTEM & MOBILE NATIVE APP LAYOUT
  Google Clean Light Default + Auto Dark Mode, Dynamic Browser Titles, 
  100% Mobile Touch Architecture & Fortune-500 Commercial Invoice Engine
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   DEFAULT LIGHT MODE (Google Clean Aesthetic)
   ========================================================================== */
:root {
  --bg-page: #f8f9fa;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f1f3f4;
  --bg-card: #ffffff;
  --bg-glass-nav: rgba(255, 255, 255, 0.95);
  
  --border-light: #e0e0e0;
  --border-focus: #1a73e8;
  --shadow-sm: 0 1px 3px rgba(60,64,67,0.12), 0 1px 2px rgba(60,64,67,0.24);
  --shadow-md: 0 4px 16px rgba(60,64,67,0.12);
  --shadow-lg: 0 10px 30px rgba(60,64,67,0.15);
  
  --accent-cyan: #1a73e8; /* Google Blue */
  --accent-blue: #1557b0;
  --accent-purple: #8e24aa;
  --accent-emerald: #137333; /* Google Green */
  --accent-gold: #ea8600;
  
  --text-primary: #202124;
  --text-secondary: #5f6368;
  --text-muted: #80868b;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* ==========================================================================
   AUTO DARK MODE (@media prefers-color-scheme: dark OR .dark-theme)
   ========================================================================== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-page: #07090e;
    --bg-surface: #10141e;
    --bg-surface-hover: #182030;
    --bg-card: rgba(255, 255, 255, 0.035);
    --bg-glass-nav: rgba(12, 16, 26, 0.92);
    
    --border-light: rgba(255, 255, 255, 0.12);
    --border-focus: #00f2fe;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
    
    --accent-cyan: #00f2fe;
    --accent-blue: #3a7bd5;
    --accent-purple: #7f00ff;
    --accent-emerald: #10b981;
    --accent-gold: #f59e0b;
    
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;
  }
}

body.light-theme {
  --bg-page: #f8f9fa !important;
  --bg-surface: #ffffff !important;
  --bg-surface-hover: #f1f3f4 !important;
  --bg-card: #ffffff !important;
  --bg-glass-nav: rgba(255, 255, 255, 0.95) !important;
  --border-light: #e0e0e0 !important;
  --border-focus: #1a73e8 !important;
  --accent-cyan: #1a73e8 !important;
  --text-primary: #202124 !important;
  --text-secondary: #5f6368 !important;
  --text-muted: #80868b !important;
}

body.dark-theme {
  --bg-page: #07090e !important;
  --bg-surface: #10141e !important;
  --bg-surface-hover: #182030 !important;
  --bg-card: rgba(255, 255, 255, 0.035) !important;
  --bg-glass-nav: rgba(12, 16, 26, 0.92) !important;
  --border-light: rgba(255, 255, 255, 0.12) !important;
  --border-focus: #00f2fe !important;
  --accent-cyan: #00f2fe !important;
  --text-primary: #ffffff !important;
  --text-secondary: #a0aec0 !important;
  --text-muted: #64748b !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-page);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 110px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Ambient Background Blobs */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: float 22s infinite alternate ease-in-out;
}

.blob-1 { top: -10%; left: -10%; width: 45vw; height: 45vw; background: radial-gradient(circle, var(--accent-cyan), transparent); }
.blob-2 { bottom: -15%; right: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, var(--accent-purple), transparent); }

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -50px) scale(1.08); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Header Navbar */
header {
  position: sticky;
  top: 0.75rem;
  z-index: 100;
  max-width: 1280px;
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
}

.nav-glass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: var(--bg-glass-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

.brand-logo span {
  color: var(--accent-cyan);
}

.logo-badge {
  background: rgba(26, 115, 232, 0.12);
  border: 1px solid var(--border-light);
  color: var(--accent-cyan);
  font-size: 0.68rem;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-item {
  padding: 0.5rem 1rem;
  border-radius: 100px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-item:hover, .nav-item.active {
  color: var(--text-primary);
  background: var(--bg-surface-hover);
}

/* Theme & Currency Controls */
.theme-toggle-btn, .curr-select-glass {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  color: var(--text-primary);
  padding: 0.4rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-btn:hover, .curr-select-glass:hover {
  background: var(--bg-surface-hover);
  border-color: var(--accent-cyan);
}

.curr-select-glass option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 1.5rem auto 4rem;
  padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  padding-top: 1rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-bottom: 1.2rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 1rem;
}

.hero-title .gradient-text {
  color: var(--accent-cyan);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Filter Search Bar */
.search-box-glass {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 500px;
  margin: 1.75rem auto 0;
  padding: 0.7rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.search-box-glass:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.search-box-glass input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.98rem;
  width: 100%;
}

/* Tabs Navigation Bar */
.tabs-header {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.6rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  scrollbar-width: none;
}
.tabs-header::-webkit-scrollbar { display: none; }

.tab-btn {
  flex: 1;
  min-width: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.1rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: var(--bg-surface-hover);
}

.tab-btn.active {
  color: #ffffff !important;
  background: var(--accent-cyan) !important;
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.35);
}

/* Grid Layout */
.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
}

.glass-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}

.glass-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}

/* Inputs & Form Controls Flex Fix */
.form-group {
  margin-bottom: 1.4rem;
}

.form-group div[style*="flex:1"],
.form-group div[style*="flex: 1"] {
  min-width: 0;
}

.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.form-label-val {
  color: var(--accent-cyan);
  font-weight: 800;
}

.input-glass {
  width: 100%;
  min-width: 0;
  padding: 0.85rem 1.15rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.98rem;
  outline: none;
  transition: all 0.2s ease;
}

.input-glass:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
}

/* Range Sliders */
.range-slider {
  width: 100%;
  height: 6px;
  background: var(--border-light);
  border-radius: 10px;
  outline: none;
  -webkit-appearance: none;
  margin-top: 0.5rem;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
}

/* Metric Display Cards */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  padding: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.metric-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-primary);
}

.metric-value.highlight-green { color: var(--accent-emerald); }
.metric-value.highlight-cyan { color: var(--accent-cyan); }

.metric-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

/* Buttons */
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.95rem 1.75rem;
  background: var(--accent-cyan);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.btn-glass:hover {
  background: var(--accent-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary-glass {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  box-shadow: none;
}

.btn-secondary-glass:hover {
  background: var(--bg-surface-hover);
}

/* Universal Keypad */
.calc-display {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-family: 'Courier New', monospace;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent-cyan);
  text-align: right;
  margin-bottom: 1.25rem;
  min-height: 70px;
}

.keypad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.key-btn {
  padding: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.key-btn:hover {
  background: var(--bg-surface-hover);
}

.key-btn.key-op { color: var(--accent-cyan); }
.key-btn.key-action { color: #d93025; }
.key-btn.key-equal { background: var(--accent-cyan); color: #fff; }

/* Itemized Products & Services Table & Header */
.invoice-items-header {
  display: flex;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0.65rem;
}

.invoice-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  align-items: center;
}

/* Table Wrapper */
.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  min-width: 440px;
}

.invoice-table th, .invoice-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.invoice-table th {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* Chart Canvas Box */
.chart-box {
  position: relative;
  width: 100%;
  height: 320px;
  margin-top: 1rem;
}

/* AdSense Slot */
.adsense-slot {
  margin: 2.5rem 0;
  text-align: center;
  padding: 1.2rem;
  background: var(--bg-surface);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
}

.adsense-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.sticky-ad-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.sticky-ad-dismiss {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-surface-hover);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.share-card-preview {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 580px;
  width: 100%;
  text-align: left;
  box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
  border-top: 1px solid var(--border-light);
  background: var(--bg-surface);
  padding: 3.5rem 1.5rem 2rem;
  margin-top: 5rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mobile Touch Bar */
.mobile-bottom-nav {
  display: none;
}

/* ==========================================================================
   PERFECT 100% NATIVE MOBILE RESPONSIVE LAYOUT (<768px)
   ========================================================================== */
@media (max-width: 768px) {
  body {
    padding-bottom: 130px;
  }

  header {
    padding: 0 0.5rem;
    top: 0.3rem;
  }

  .nav-glass {
    padding: 0.5rem 0.85rem;
    border-radius: 20px;
  }

  .nav-links .nav-item {
    display: none;
  }

  .logo-badge {
    display: none;
  }

  .container {
    padding: 0 0.75rem;
    margin: 1rem auto 3rem;
  }

  .hero-section {
    margin-bottom: 1.1rem;
    padding-top: 0.5rem;
  }

  .hero-pill {
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: -0.4px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .search-box-glass {
    margin-top: 1rem;
    padding: 0.5rem 0.85rem;
  }

  .tabs-header {
    padding: 0.35rem;
    gap: 0.4rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
  }

  .tab-btn {
    min-width: 120px;
    padding: 0.65rem 0.75rem;
    font-size: 0.78rem;
  }

  .calculator-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .glass-panel {
    padding: 1rem !important;
    border-radius: var(--radius-md);
  }

  .glass-card {
    padding: 1rem;
    border-radius: var(--radius-sm);
  }

  .invoice-items-header {
    display: none;
  }

  #panel-invoice div[style*="display:flex"],
  #panel-invoice div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 0.65rem !important;
  }

  .invoice-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.5rem !important;
    background: var(--bg-surface-hover);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
  }

  .invoice-row input, .invoice-row select, .invoice-row button {
    width: 100% !important;
    flex: none !important;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .metric-card {
    padding: 0.85rem;
  }

  .metric-value {
    font-size: 1.25rem;
  }

  .chart-box {
    height: 230px;
  }

  .keypad-grid {
    gap: 0.4rem;
  }

  .key-btn {
    padding: 0.7rem;
    font-size: 1rem;
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    z-index: 9999;
    justify-content: space-around;
    padding: 0.5rem 0.2rem;
    box-shadow: var(--shadow-lg);
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: var(--text-muted);
    font-size: 0.65rem;
    text-decoration: none;
    padding: 0.2rem 0.4rem;
    font-weight: 600;
  }

  .mobile-nav-item.active {
    color: var(--accent-cyan);
  }

  .sticky-ad-bar {
    bottom: 56px;
    padding: 0.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Print Invoice Engine */
@media print {
  body { background: #ffffff !important; color: #000000 !important; padding-bottom: 0 !important; }
  .bg-mesh, header, footer, .adsense-slot, .sticky-ad-bar, .mobile-bottom-nav, .hero-section, .tabs-header, .search-box-glass, #panel-solar, #panel-speed, #panel-loan, #panel-freelance, #panel-investment, #panel-subscription, #panel-universal, #panel-gpa, #panel-profit, #about, .btn-glass, #btn-add-invoice-item { display: none !important; }
  #panel-invoice { display: block !important; grid-template-columns: 1fr !important; border: none !important; box-shadow: none !important; background: #ffffff !important; color: #000000 !important; padding: 0 !important; }
  .printable-invoice-card { border: 1px solid #ccc !important; background: #ffffff !important; color: #000000 !important; padding: 2.5rem !important; box-shadow: none !important; }
  .printable-invoice-card * { color: #000000 !important; text-shadow: none !important; }
  .invoice-table th, .invoice-table td { border-bottom: 1px solid #ddd !important; }
}
