:root{
  /* Official Bike2Garage Master Brand System Tokens */
  --brand-primary: #0D1B2A;       /* Navy — Trust, wordmark, headers */
  --brand-accent: #FF6A00;        /* Orange — Energy, "2" accent, primary CTAs */
  --brand-accent-hover: #E05D00;  /* Deep Orange for hover/active */
  --brand-secondary: #4F46E5;     /* Electric Indigo — Digital accents */
  --brand-success: #10B981;       /* Success Green — Verified, active */
  --brand-surface: #F2F4F7;       /* Soft Light Surface */
  --brand-white: #FFFFFF;         /* Pure White */
  --brand-dark-text: #0F172A;
  --brand-muted: #64748B;
  --brand-line: #E2E8F0;

  --bg: #F2F4F7;
  --panel: #FFFFFF;
  --ink: #0D1B2A;
  --muted: #64748B;
  --line: #E2E8F0;
  --accent: #FF6A00;
  --accent-hover: #E05D00;
  --success: #10B981;
  --warn: #D97706;
  --danger: #DC2626;

  /* Typography Design Tokens */
  --font-display: 'Poppins', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --shadow: 0 10px 25px -5px rgba(13, 27, 42, 0.08), 0 8px 10px -6px rgba(13, 27, 42, 0.04);
  --radius: 16px;
}

*{box-sizing:border-box; -webkit-tap-highlight-color:transparent;}

body{
  margin:0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  padding-bottom: 20px;
  -webkit-font-smoothing: antialiased;
}

body.field-mode-active { padding-bottom: 80px; }

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

button, input, select, textarea { font: inherit; }
button { cursor: pointer; touch-action: manipulation; user-select: none; }

.shell { min-height: 100vh; display: flex; flex-direction: column; }

/* Top Header Bar */
.topbar {
  height: 68px;
  background: var(--brand-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.25);
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.b2g-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.b2g-logo {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

.brand-tagline-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Header Buttons */
.btn-brand-guide {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}
.btn-brand-guide:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #ffffff;
}

.btn-field-mode {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-weight: 600;
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}
.btn-field-mode:hover, .btn-field-mode.active {
  background: var(--brand-accent);
  color: #ffffff;
  border-color: var(--brand-accent);
}

/* Field Control Drawer */
.field-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-primary);
  color: #ffffff;
  padding: 12px 20px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.field-drawer.hidden { display: none !important; }

.field-drawer-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; }

.field-drawer select {
  background: #1e293b;
  color: #ffffff;
  border: 1px solid #334155;
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  outline: none;
}

.field-triggers { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.btn-trigger {
  background: #1e293b;
  color: #f8fafc;
  border: 1px solid #334155;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-trigger:hover { background: #334155; border-color: #475569; }

/* Main Layout Grid */
.layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 68px); }
.side { background: #ffffff; border-right: 1px solid var(--line); padding: 20px; }
.nav { display: grid; gap: 6px; }

.nav button {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav button.active, .nav button:hover {
  background: var(--brand-surface);
  color: var(--brand-primary);
  font-weight: 700;
  border-left: 3px solid var(--brand-accent);
}
.main { padding: 24px; max-width: 860px; width: 100%; margin: auto; }

/* Clean Cards */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

/* Hero Section Component */
.brand-hero {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.2);
  position: relative;
  overflow: hidden;
}

.brand-hero::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,106,0,0.15) 0%, rgba(255,106,0,0) 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 106, 0, 0.15);
  color: var(--brand-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 106, 0, 0.3);
}

.hero-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #ffffff;
  line-height: 1.25;
}

.hero-sub {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-promises {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-promise-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
}

.hero-promise-icon {
  color: var(--brand-accent);
  font-weight: 800;
}

/* Status Badges */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pill.success { background: #dcfce7; color: #15803d; }
.pill.warn { background: #fef3c7; color: #b45309; }
.pill.blue { background: #dbeafe; color: #1d4ed8; }

/* Step Progress & Title */
.step-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-accent);
  display: block;
  margin-bottom: 4px;
}
.customer-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--brand-primary);
}

/* Option Grids */
.customer-symptoms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.symptom-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.symptom-box:hover { background: var(--brand-surface); border-color: #cbd5e1; }
.symptom-box.selected {
  border-color: var(--brand-accent);
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.2);
}
.symptom-box.selected .svg-icon { stroke: var(--brand-accent); }
.symptom-box .title { font-weight: 700; font-size: 14px; }

.svg-icon { width: 22px; height: 22px; stroke: var(--ink); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.tile-group { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tile-btn {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  background: #ffffff;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
}
.tile-btn:hover { background: var(--brand-surface); }
.tile-btn.selected {
  border-color: var(--brand-accent);
  background: var(--brand-primary);
  color: #ffffff;
}

/* Mechanic Trust Card */
.trust-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin: 16px 0;
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.03);
}
.trust-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.trust-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--brand-primary); margin: 0; }
.trust-subtitle { font-size: 14px; color: var(--muted); margin-top: 2px; }

.verification-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.badge-verify { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: #dcfce7; color: #15803d; }
.badge-unverified { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: #f1f5f9; color: #64748b; }

/* Handover Code Box */
.handover-code-box {
  background: var(--brand-primary);
  color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  margin: 20px 0;
  border: 2px stroke var(--brand-accent);
}
.handover-code-num { font-size: 42px; font-weight: 900; letter-spacing: 0.25em; margin: 8px 0; font-family: monospace; color: var(--brand-accent); }

.safety-notice { background: #fef3c7; border: 1px solid #fde68a; border-radius: 14px; padding: 14px; color: #92400e; font-size: 13px; line-height: 1.5; margin-top: 16px; }

/* Buttons */
.btn {
  border: 0;
  border-radius: 14px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s ease;
  min-height: 52px;
}
.btn:active { transform: scale(0.98); }

.primary, .btn-brand-primary {
  background: var(--brand-accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.3);
}
.primary:hover, .btn-brand-primary:hover {
  background: var(--brand-accent-hover);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4);
}
.secondary { background: var(--brand-surface); color: var(--brand-primary); }
.secondary:hover { background: #e2e8f0; }
.outline { background: #ffffff; border: 1px solid var(--line); color: var(--brand-primary); }
.outline:hover { background: var(--brand-surface); }

/* Mechanic Presets */
.mechanic-presets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 12px; }
.preset-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
  min-height: 56px;
}
.preset-card:hover { background: var(--brand-surface); }
.preset-card.selected {
  border-color: var(--brand-accent);
  background: var(--brand-primary);
  color: #ffffff;
}
.preset-card.selected .preset-name { color: #ffffff; }
.preset-card.selected .preset-price { color: var(--brand-accent); }
.preset-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.preset-price { font-weight: 700; font-size: 14px; color: var(--success); }

.bill-total-box {
  margin-top: 20px;
  padding: 18px;
  background: var(--brand-surface);
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.action-contact { display: flex; gap: 10px; margin-top: 12px; }
.btn-call { background: #dcfce7; color: #15803d; padding: 12px 18px; border-radius: 12px; font-size: 14px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }
.btn-whatsapp { background: #dcfce7; color: #065f46; padding: 12px 18px; border-radius: 12px; font-size: 14px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }

.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13,27,42,0.7); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 16px; }
.modal-content { background: #ffffff; border-radius: 24px; padding: 28px; width: 100%; max-width: 480px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3); max-height: 90vh; overflow-y: auto; }

.payment-option { border: 1px solid var(--line); border-radius: 14px; padding: 16px; display: flex; align-items: center; justify-content: space-between; font-weight: 700; cursor: pointer; margin-bottom: 10px; background: #ffffff; }
.payment-option.selected { border-color: var(--brand-accent); background: var(--brand-primary); color: #ffffff; }

.notes-modal { position: fixed; bottom: 70px; right: 20px; width: 360px; background: #ffffff; border-radius: 18px; padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--line); z-index: 950; }

.row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.row:last-child { border-bottom: 0; }

.empty { text-align: center; padding: 48px; color: var(--muted); font-weight: 600; }
.notice { background: #fef3c7; border: 1px solid #fde68a; border-radius: 14px; padding: 16px; color: #92400e; font-size: 14px; line-height: 1.5; }
.footer-note { font-size: 12px; color: var(--muted); margin-top: 16px; }

/* Brand Guideline & Logo Variant Showcase Grid */
.brand-grid-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0;
}

.logo-variant-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo-variant-card.dark-bg {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.variant-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-muted);
}
.logo-variant-card.dark-bg .variant-label {
  color: #94a3b8;
}

.color-swatch-group {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.color-swatch-item {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

@media(max-width:850px){
  .layout { grid-template-columns: 1fr; }
  .side { display: none; }
  .main { padding: 16px; }
  .customer-symptoms-grid, .mechanic-presets-grid, .brand-grid-showcase { grid-template-columns: 1fr 1fr; }
  .field-drawer { flex-direction: column; align-items: stretch; }
  .field-triggers { justify-content: stretch; }
  .btn-trigger { flex: 1; justify-content: center; }
  .notes-modal { left: 16px; right: 16px; width: auto; bottom: 120px; }
  .topbar { padding: 0 16px; }
  .brand-tagline-sub { display: none; }
}

@media(max-width:550px){
  .customer-symptoms-grid, .mechanic-presets-grid, .brand-grid-showcase, .services-catalog-grid { grid-template-columns: 1fr; }
}

/* Floating WhatsApp Quick Action Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 850;
  text-decoration: none;
  transition: all 0.2s ease;
}
.whatsapp-float-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  background: #20bd5a;
}
body.field-mode-active .whatsapp-float-btn {
  bottom: 84px;
}

/* Services Catalog Grid */
.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.service-catalog-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.15s ease;
}
.service-catalog-card:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 8px 20px rgba(13, 27, 42, 0.06);
}

.service-catalog-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-catalog-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 0 0 6px;
}

.service-catalog-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Mechanic Onboarding Banner */
.mechanic-join-hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.how-step-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.how-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* PWA Header Button */
.btn-pwa-install {
  background: #10B981;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}
.btn-pwa-install:hover {
  background: #059669;
  transform: translateY(-1px);
}

/* WhatsApp Direct Action Buttons */
.btn-whatsapp-share {
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-whatsapp-share:hover {
  background: #1eb956;
  color: #ffffff;
}

/* Pilot Kit Print Collateral */
.pilot-kit-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pilot-tab-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
.pilot-tab-btn.active {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
}

.poster-sheet {
  background: #ffffff;
  border: 2px dashed #cbd5e1;
  border-radius: 20px;
  padding: 36px;
  max-width: 600px;
  margin: 0 auto 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.poster-qr-box {
  background: #f8fafc;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.poster-qr-img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
}

.handlebar-tag-preview {
  background: #ffffff;
  border: 2px solid #0D1B2A;
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  margin: 0 auto 20px;
  position: relative;
}
.handlebar-hole {
  width: 32px;
  height: 32px;
  border: 2px dashed #0D1B2A;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.broadcast-copy-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}
.broadcast-copy-box {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  font-family: monospace;
  font-size: 13px;
  white-space: pre-wrap;
  margin: 10px 0;
}

/* Print Stylesheet for Physical Flyering */
@media print {
  body { background: #ffffff !important; padding: 0 !important; }
  .topbar, .side, .topbar-actions, .field-drawer, .whatsapp-float-btn, .pilot-kit-tabs, .btn-print-action {
    display: none !important;
  }
  .layout { display: block !important; margin: 0 !important; }
  .main { padding: 0 !important; }
  .poster-sheet {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 100% !important;
    page-break-inside: avoid;
  }
}

