/* Control Rental App By Tech Pro Latam - Ultra-Minimalist Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-dark: #090a0f;
  --bg-card: #12141c;
  --bg-card-hover: #191c27;
  --bg-input: #151822;
  --border-color: #222634;
  --border-subtle: #1a1d28;
  
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  
  --accent-green: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #ef4444;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
}

/* NAVBAR HEADER */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img {
  width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
  display: block;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* DESKTOP NAV TABS */
.desktop-nav-tabs {
  display: flex;
  gap: 0.25rem;
  background: var(--bg-input);
  padding: 3px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.15s ease;
}

.tab-btn.active {
  background: var(--primary);
  color: white;
}

.tab-btn svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.5px;
  opacity: 0.7;
}

.tab-btn.active svg {
  opacity: 1;
}

/* MOBILE BOTTOM NAV */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: #0d0e14;
  border-top: 1px solid var(--border-color);
  z-index: 999;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.62rem;
  font-weight: 500;
  gap: 1px;
  width: 20%;
  height: 100%;
  cursor: pointer;
}

.mobile-nav-item svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5px;
  opacity: 0.7;
  stroke: currentColor;
}

.mobile-nav-item.active svg {
  opacity: 1;
}

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

/* MAIN LAYOUT */
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  flex: 1;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* MINIMALIST DASHBOARD STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

.stat-info h4 {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-info .stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

/* MINIMALIST CARD PANELS */
.card-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
  gap: 0.5rem;
}

.panel-title {
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-title svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5px;
  color: var(--text-dim);
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.card-panel:hover .panel-title svg {
  opacity: 0.9;
}

.stat-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  opacity: 0.65;
  margin-bottom: 0.4rem;
}

.stat-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5px;
}

/* MINIMALIST BUTTONS & INPUTS */
.btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.15s ease;
  min-height: 42px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: #1a1d29;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: #242938;
}

.btn-emerald { background: var(--accent-green); }
.btn-sky { background: var(--primary); }
.btn-danger { background: var(--accent-rose); }

.btn:disabled { opacity: 0.4; pointer-events: none; }

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}

.input-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.input-field, select.input-field {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.8rem;
  color: white;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  min-height: 42px;
}

.input-field:focus {
  border-color: var(--primary);
}

/* CAMERA SCANNER VIEWPORT & CENTERED PLACEHOLDERS */
.scanner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .scanner-grid {
    grid-template-columns: 1fr;
  }
}

/* SCANNER VIEWPORT STYLING */
.scanner-view-container {
  position: relative;
  width: 100%;
  min-height: 280px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scanner-reader,
#scanner-reentry-reader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
}

#scanner-reader > div,
#scanner-reentry-reader > div {
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
}

#scanner-reader video,
#scanner-reentry-reader video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 8px;
}

/* HIDE ALL DEFAULT HTML5-QRCODE SHADED REGIONS, BLACK BARS, WHITE BRACKETS, DASHBOARDS, BUTTONS & CANVAS ARTIFACTS */
#qr-shaded-region,
#scanner-reader__scan_region,
#scanner-reentry-reader__scan_region,
#scanner-reader__scan_region *,
#scanner-reentry-reader__scan_region *,
#scanner-reader__dashboard,
#scanner-reentry-reader__dashboard,
#scanner-reader__status_span,
#scanner-reentry-reader__status_span,
#html5-qrcode-anchor-scan-type-change,
#scanner-reader img,
#scanner-reentry-reader img,
#scanner-reader canvas,
#scanner-reentry-reader canvas,
.html5-qrcode-element {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

/* --- HIGH-TECH LASER SCANNING ANIMATION OVERLAY --- */
.scanner-laser-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
  border-radius: 8px;
}

/* Glowing Green Laser Line Sweep */
.laser-beam {
  position: absolute;
  left: 5%;
  width: 90%;
  height: 3px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0) 0%, rgba(16, 185, 129, 0.95) 50%, rgba(16, 185, 129, 0) 100%);
  box-shadow: 0 0 15px #10b981, 0 0 30px #10b981;
  animation: laserSweep 2.2s infinite ease-in-out;
  border-radius: 50%;
}

@keyframes laserSweep {
  0% { top: 10%; opacity: 0.3; }
  50% { top: 85%; opacity: 1; }
  100% { top: 10%; opacity: 0.3; }
}

/* Glowing Target Corner Brackets */
.scanner-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #10b981;
  border-style: solid;
  border-width: 0;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.7);
  z-index: 5;
}

.corner-top-left {
  top: 18px;
  left: 18px;
  border-top-width: 3.5px;
  border-left-width: 3.5px;
  border-top-left-radius: 6px;
}

.corner-top-right {
  top: 18px;
  right: 18px;
  border-top-width: 3.5px;
  border-right-width: 3.5px;
  border-top-right-radius: 6px;
}

.corner-bottom-left {
  bottom: 18px;
  left: 18px;
  border-bottom-width: 3.5px;
  border-left-width: 3.5px;
  border-bottom-left-radius: 6px;
}

.corner-bottom-right {
  bottom: 18px;
  right: 18px;
  border-bottom-width: 3.5px;
  border-right-width: 3.5px;
  border-bottom-right-radius: 6px;
}

/* Live Scanning Badge Header */
.scanner-live-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.6);
  white-space: nowrap;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 1.2s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.6; }
}

#scanner-placeholder-msg, #reentry-placeholder-msg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  z-index: 5;
  background: #090d16;
  box-sizing: border-box;
}

#scanner-placeholder-msg svg, #reentry-placeholder-msg svg {
  margin: 0 auto 0.85rem auto;
  display: block;
  flex-shrink: 0;
}

.scan-feedback {
  background: var(--accent-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
}

/* MINIMALIST DATA CARDS (FOR MOBILE) */
.mobile-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-data-card {
  background: #151824;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mobile-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mobile-card-title {
  font-weight: 600;
  font-size: 0.92rem;
}

.mobile-card-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

.mobile-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 0.35rem;
  border-top: 1px solid var(--border-subtle);
}

.mobile-card-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.mobile-card-actions .btn {
  flex: 1;
  min-height: 36px;
  padding: 0.35rem;
  font-size: 0.78rem;
}

/* QR GRID FOR MINIMALIST CATALOG */
.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .qr-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 1rem;
  }
}

.qr-card {
  background: #151824;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qr-canvas-container {
  background: white;
  padding: 5px;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.qr-card .prod-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.qr-card .prod-name {
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
  height: 26px;
  overflow: hidden;
}

/* MINIMALIST BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-indigo { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.badge-emerald { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-amber { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-sky { background: rgba(14, 165, 233, 0.15); color: #38bdf8; border: 1px solid rgba(14, 165, 233, 0.3); }

/* TABLES FOR DESKTOP */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.custom-table th {
  background: #151824;
  padding: 0.75rem 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  font-size: 0.7rem;
  border-bottom: 1px solid var(--border-color);
}

.custom-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-main);
  vertical-align: middle;
}

/* MODALS */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  padding: 0.75rem;
}

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

.modal-box {
  background: #12141c;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.25rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title { font-weight: 700; font-size: 1.05rem; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.4rem; cursor: pointer; }

/* --- PREMIUM MOBILE RESPONSIVE DESIGN SYSTEM (< 768px) --- */
@media (max-width: 768px) {
  body {
    padding-bottom: 78px !important;
  }

  .navbar {
    padding: 0.6rem 0.85rem;
  }

  .nav-container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .app-logo span {
    font-size: 1.1rem;
  }

  .user-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.72rem;
  }

  .desktop-nav-tabs {
    display: none !important;
  }

  /* Fixed Glassmorphic iOS/Android Bottom App Bar */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(11, 15, 25, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    padding: 0 0.2rem;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.6);
  }

  .mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 6px 0;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .mobile-nav-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.2s ease, stroke 0.2s ease;
  }

  .mobile-nav-item.active {
    color: #38bdf8;
  }

  .mobile-nav-item.active svg {
    stroke: #38bdf8;
    transform: translateY(-2px) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6));
  }

  .mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    width: 28px;
    height: 3.5px;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 0 10px #38bdf8;
  }

  /* Compact 2x2 Mobile Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
  }

  .stat-card {
    padding: 0.65rem 0.75rem !important;
    gap: 0.5rem !important;
    border-radius: 10px !important;
  }

  .stat-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
  }

  .stat-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .stat-info h4 {
    font-size: 0.62rem !important;
    margin-bottom: 0.15rem !important;
    letter-spacing: 0.02em;
  }

  .stat-info .stat-value {
    font-size: 1.2rem !important;
  }

  /* Mobile Tables & Cards Toggle */
  .desktop-only-table {
    display: none !important;
  }
  .mobile-only-cards {
    display: flex !important;
  }

  /* Mobile Touch Cards */
  .mobile-data-card {
    background: #121622;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .mobile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .mobile-card-title {
    font-weight: 700;
    font-size: 0.98rem;
    color: #f8fafc;
  }

  .mobile-card-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    margin-top: 2px;
  }

  .mobile-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #cbd5e1;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.4rem;
  }

  .mobile-card-actions .btn {
    flex: 1;
    min-height: 42px;
    padding: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
  }

  /* Mobile Viewport Container */
  .scanner-view-container {
    height: 290px !important;
    border-radius: 12px !important;
  }

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

  /* Panel Header Compactness */
  .panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .panel-header .btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  /* Modal Mobile Box */
  .modal-box {
    padding: 1rem;
    border-radius: 16px;
    max-height: 92vh;
  }

  .input-field {
    min-height: 44px;
    font-size: 0.92rem;
  }
}

@media (min-width: 769px) {
  .mobile-only-cards { display: none !important; }
}

/* PRINT STYLES */
@media print {
  body { background: white !important; color: black !important; padding: 0 !important; }
  .navbar, .mobile-bottom-nav, .desktop-nav-tabs, .btn, .stat-card, .scanner-grid, .modal-backdrop, #tab-projects, #tab-scanner-out, #tab-scanner-in, #tab-catalog, #tab-audit { display: none !important; }
  #tab-print-sheet { display: block !important; }
  .print-page { width: 100%; color: #111; }
  .print-header { display: flex; justify-content: space-between; border-bottom: 2px solid #111; padding-bottom: 10px; margin-bottom: 15px; }
  .print-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
  .print-table th, .print-table td { border: 1px solid #333; padding: 6px 8px; font-size: 11px; }
}
