/* =====================================================
   style.css — Przeglądarka e-SF, styl spójny z EF
   ===================================================== */

/* ─── LAYOUT STRONY ────────────────────────────────── */
.viewer-page { background: #F8FAFC; }
.tool-body   { padding: 40px 0 80px; min-height: 60vh; }

/* ─── HERO NARZĘDZIA ────────────────────────────────── */
.tool-hero {
  background: var(--navy);
  padding: 140px 24px 60px;
  position: relative;
  overflow: hidden;
}
.tool-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(37,99,235,.22) 0%, transparent 70%);
  pointer-events: none;
}
.tool-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto;
}
.tool-h1 {
  font-size: clamp(26px,2.8vw,44px);
  color: #F8FAFC;
  margin-bottom: 16px;
  line-height: 1.15;
}
.tool-lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  max-width: 480px;
}
.tool-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.tool-badge {
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.8);
}
.tool-hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tool-feature-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 16px;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.tool-feature-card strong { display: block; color: #F8FAFC; font-size: 13px; margin-bottom: 2px; }
.tf-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tf-icon.blue   { background: rgba(37,99,235,.25);  color: #60A5FA; }
.tf-icon.green  { background: rgba(22,163,74,.25);  color: #4ADE80; }
.tf-icon.orange { background: rgba(234,88,12,.25);  color: #FB923C; }
@media(max-width:900px){ .tool-hero-inner{ grid-template-columns:1fr; } .tool-hero-features{ margin-top:24px; } }
@media(max-width:640px){ .tool-hero{ padding-top:110px; } }

/* ─── UPLOAD CARD ───────────────────────────────────── */
.upload-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 32px;
}
.upload-card-header { margin-bottom: 28px; }
.upload-card-title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bricolage Grotesque',sans-serif;
  font-size: 20px; font-weight: 800; color: var(--navy);
  margin-bottom: 6px;
}
.upload-card-sub { font-size: 14px; color: var(--slate); }
.upload-form { display: flex; flex-direction: column; gap: 20px; }
.upload-zones { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center; }
.drop-zone {
  border: 2px dashed var(--border);
  border-radius: 14px;
  padding: 32px 20px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: block;
}
.drop-zone:hover, .drop-zone.dz-hover { border-color: var(--blue); background: var(--blue-l); }
.drop-zone input { display: none; }
.dz-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.dz-icon { width: 48px; height: 48px; transition: opacity .2s; }
.dz-icon svg, .dz-icon--muted svg { width: 48px; height: 48px; }
.dz-title { font-size: 14px; font-weight: 700; color: var(--navy); }
.dz-hint  { font-size: 12px; color: var(--slate); }
.dz-opt   { font-size: 11px; color: var(--slate-l); font-weight: 400; }
.dz-filename { font-size: 12px; color: var(--blue); font-weight: 600; display: none; word-break: break-all; }
.vs-sep {
  display: flex; align-items: center; justify-content: center;
  width: 60px; flex-shrink: 0;
}
.vs-sep span {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--slate);
}
.upload-error {
  display: flex; align-items: center; gap: 8px;
  background: #FEF2F2; border: 1px solid #FECACA;
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; color: #DC2626;
}
.upload-submit { max-width: 280px; }
.upload-note { font-size: 12px; color: var(--slate-l); }
@media(max-width:700px){ .upload-zones{ grid-template-columns:1fr; } .vs-sep{ display:none; } .upload-card{ padding:20px; } }

/* ─── CO OBSŁUGUJEMY ────────────────────────────────── */
.schema-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.schema-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.sc-icon { font-size: 24px; margin-bottom: 4px; }
.schema-card strong { font-size: 14px; color: var(--navy); }
.schema-card span { font-size: 12px; color: var(--slate); line-height: 1.4; }
@media(max-width:700px){ .schema-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:480px){ .schema-grid{ grid-template-columns:1fr; } }

/* ─── NAGŁÓWEK RAPORTU ──────────────────────────────── */
.report-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px; margin-bottom: 24px;
}
.report-company { font-family:'Bricolage Grotesque',sans-serif; font-size:22px; font-weight:800; color:var(--navy); margin-bottom:8px; }
.report-meta { display:flex; flex-wrap:wrap; gap:6px; }
.type-badge { display:inline-block; padding:3px 10px; border-radius:6px; font-size:11px; font-weight:700; }
.type-badge.info   { background:var(--blue-t); color:var(--blue); }
.type-badge.period { background:var(--bg); border:1px solid var(--border); color:var(--slate); }
.btn-sm { padding:7px 14px; font-size:13px; border-radius:8px; }

/* ─── STAT CARDS (raport) ───────────────────────────── */
.r-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.r-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.r-stat-hd { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.r-stat-lbl { font-size:12px; font-weight:600; color:var(--slate); }
.r-stat-icon { width:36px; height:36px; border-radius:9px; display:flex; align-items:center; justify-content:center; }
.r-stat-icon svg { width:18px; height:18px; }
.r-stat-icon.blue   { background:var(--blue-t);            color:var(--blue); }
.r-stat-icon.green  { background:var(--green-t);           color:var(--green); }
.r-stat-icon.orange { background:var(--orange-t);          color:var(--orange); }
.r-stat-icon.indigo { background:rgba(99,102,241,.1);      color:#6366F1; }
.r-stat-icon.red    { background:rgba(239,68,68,.1);       color:#EF4444; }
.r-stat-val { font-family:'Bricolage Grotesque',sans-serif; font-size:clamp(18px,1.8vw,24px); font-weight:800; color:var(--navy); }
.r-stat-val .cur { font-size:13px; font-weight:500; color:var(--slate); }
.r-stat-val.pos { color:var(--green); }
.r-stat-val.neg { color:#EF4444; }
.r-stat-ft { font-size:12px; color:var(--slate); margin-top:6px; }
@media(max-width:900px){ .r-stats{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .r-stats{ grid-template-columns:1fr 1fr; gap:10px; } .r-stat{ padding:14px; } }

/* ─── TABY ──────────────────────────────────────────── */

/* Wrapper całości */
.r-tabs-wrap {
  margin-bottom: 28px;
}

/* SELECT — widoczny tylko na mobile */
.r-tabs-select {
  display: none;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  cursor: pointer;
}

/* TABY desktop — karty w poziomie */
.r-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.r-tabs::-webkit-scrollbar { display: none; }

.r-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 100px;
  padding: 14px 12px 12px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: all .18s;
  text-align: center;
  position: relative;
}
.r-tab:hover {
  border-color: #94A3B8;
  background: var(--bg);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.r-tab.active {
  border-color: var(--blue);
  background: var(--blue-l);
  box-shadow: 0 2px 12px rgba(37,99,235,.15);
}
.r-tab:hover:not(.active) {
  border-color: #94A3B8;
}

/* Ikona */
.r-tab-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  color: var(--slate);
  flex-shrink: 0;
  transition: background .18s, color .18s;
}
.r-tab-icon svg { width: 16px; height: 16px; }
.r-tab.active .r-tab-icon {
  background: var(--blue);
  color: #fff;
}
.r-tab:hover:not(.active) .r-tab-icon {
  background: var(--border);
  color: var(--navy);
}

/* Nazwa */
.r-tab-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  white-space: nowrap;
  line-height: 1.2;
}
.r-tab.active .r-tab-label { color: var(--blue); }

/* Opis */
.r-tab-desc {
  font-size: 10.5px;
  color: var(--slate-l);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.r-tab.active .r-tab-desc { color: #60A5FA; }

/* Badge */
.tab-badge {
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 8px;
  display: inline-block;
}
.r-tab.active .tab-badge { background: #fff; color: var(--blue); }

/* Panel */
.r-panel { display: none; padding-top: 8px; }
.r-panel.active { display: block; }

/* MOBILE — select zamiast tabów */
@media(max-width: 700px) {
  .r-tabs { display: none; }
  .r-tabs-select { display: block; }
}

/* ─── TABELE ────────────────────────────────────────── */
.r-table-wrap { background:#fff; border:1px solid var(--border); border-radius:14px; overflow:hidden; margin-bottom:20px; }
.r-table-title { padding:16px 20px; font-size:14px; font-weight:700; color:var(--navy); border-bottom:1px solid var(--border); display:flex; align-items:center; gap:8px; }
.r-table-scroll { overflow-x:auto; }
.r-table { width:100%; border-collapse:collapse; font-size:13px; }
.r-table thead th { background:#F8FAFC; padding:10px 12px; font-size:11px; font-weight:700; color:var(--slate); text-align:right; border-bottom:1px solid var(--border); }
.r-table thead .col-l { text-align:left; }
.r-table tbody td { padding:9px 12px; border-bottom:1px solid #F1F5F9; vertical-align:middle; }
.r-table tbody tr:last-child td { border-bottom:none; }
.r-table tbody tr:hover td { background:#F8FAFC; }
.col-l { text-align:left; color:var(--navy); min-width:260px; }
.col-n { text-align:right; white-space:nowrap; font-variant-numeric:tabular-nums; color:var(--navy); min-width:100px; }
.col-d { text-align:center; min-width:80px; }
.col-n.muted { color:var(--slate-l); }
.neg { color:#EF4444!important; }
.lv-0.main-row td { background:#EFF6FF; font-weight:700; }
.result-row td { font-weight:700; color:var(--navy); border-top:2px solid var(--border); }
.total-row td { background:var(--navy); color:#fff; font-weight:700; font-size:13px; }
.dyn.up   { color:var(--green); font-weight:600; }
.dyn.down { color:#EF4444; font-weight:600; }
.dyn.zero { color:var(--slate-l); }
@media(max-width:640px){ .r-table{ font-size:12px; } .col-l{ min-width:180px; } }

/* ─── WYKRESY ───────────────────────────────────────── */
.charts-2col { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.chart-box { background:#fff; border:1px solid var(--border); border-radius:14px; padding:24px 20px 20px; }
.chart-box--wide { grid-column:1/-1; }
.chart-box-title { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:20px; }

/* Ograniczenie wysokości canvas — kluczowe dla Chart.js */
.chart-box canvas {
  max-height: 200px !important;
  width: 100% !important;
  margin-bottom: 16px;
}
.chart-box.chart-box--wide canvas {
  max-height: 200px !important;
}
@media(max-width:700px){ .charts-2col{ grid-template-columns:1fr; } .chart-box canvas{ max-height:180px !important; } }

/* ─── WSKAŹNIKI ─────────────────────────────────────── */
.ratios-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.ratio-group { background:#fff; border:1px solid var(--border); border-radius:14px; padding:24px; }
.rg-header { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.rg-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rg-icon svg { width:20px; height:20px; }
.rg-icon.rent { background:var(--green-t); color:var(--green); }
.rg-icon.liq  { background:var(--blue-t);  color:var(--blue); }
.rg-icon.debt { background:var(--orange-t);color:var(--orange); }
.rg-title { font-size:15px; font-weight:700; color:var(--navy); }
.rg-sub   { font-size:12px; color:var(--slate); }
.ratio-list { display:flex; flex-direction:column; gap:0; }
.ratio-row { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid #F1F5F9; font-size:13px; color:var(--slate); gap:8px; }
.ratio-row:last-child { border-bottom:none; }
.rv { font-weight:700; color:var(--navy); white-space:nowrap; }
.rv.good { color:var(--green); }
.rv.bad  { color:#EF4444; }
.bool-yes { color:var(--green); font-weight:600; }
.bool-no  { color:#EF4444; font-weight:600; }
@media(max-width:900px){ .ratios-grid{ grid-template-columns:1fr; } }

/* ─── JEDNOSTKA / INFO CARDS ────────────────────────── */
.info-card { background:#fff; border:1px solid var(--border); border-radius:14px; padding:24px; margin-bottom:16px; }
.info-card-title { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:16px; }
.info-dl { display:grid; grid-template-columns:160px 1fr; gap:0; }
.info-dl dt { font-size:12px; font-weight:600; color:var(--slate); padding:8px 12px 8px 0; border-bottom:1px solid #F1F5F9; }
.info-dl dd { font-size:13px; color:var(--navy); padding:8px 0; border-bottom:1px solid #F1F5F9; }
.info-dl dd.mono { font-family:'Courier New',monospace; font-size:13px; }
.wprow-list { display:flex; flex-direction:column; gap:0; }
.wprow-field { padding:12px 0; border-bottom:1px solid #F1F5F9; }
.wprow-field:last-child { border-bottom:none; }
.wprow-label { font-size:12px; font-weight:600; color:var(--slate); margin-bottom:4px; display:flex; gap:8px; align-items:center; }
.wprow-kod  { font-size:10px; background:var(--bg); border:1px solid var(--border); border-radius:4px; padding:1px 6px; color:var(--slate-l); }
.wprow-value { font-size:13px; color:var(--navy); line-height:1.7; text-align:justify; hyphens:auto; -webkit-hyphens:auto; }
.wprow-value.mono { font-family:'Courier New',monospace; }

/* Długi tekst — collapsible */
.wprow-value.long-text {
  max-height: 96px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}
.wprow-value.long-text.expanded {
  max-height: none;
  mask-image: none;
  -webkit-mask-image: none;
}
.wprow-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
}
.wprow-expand-btn:hover { color: var(--blue-d); }

/* ─── ZAŁĄCZNIKI PDF ────────────────────────────────── */
.att-row { display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid #F1F5F9; }
.att-row:last-child { border-bottom:none; }
.att-type { width:44px; height:44px; border-radius:10px; background:#FEE2E2; color:#DC2626; display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:800; flex-shrink:0; }
.att-type.pdf { background:#FEE2E2; color:#DC2626; }
.att-info { flex:1; min-width:0; }
.att-name { font-size:13px; font-weight:600; color:var(--navy); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.att-meta { font-size:11px; color:var(--slate-l); display:flex; gap:10px; flex-wrap:wrap; margin-top:3px; }
.att-actions { display:flex; gap:8px; flex-shrink:0; }

/* ─── PDF.JS VIEWER ─────────────────────────────────── */
.pdfjs-viewer { margin-top:12px; border:1px solid var(--border); border-radius:12px; overflow:hidden; }
.pdfjs-toolbar { background:#F8FAFC; border-bottom:1px solid var(--border); padding:8px 12px; display:flex; align-items:center; gap:8px; }
.pdfjs-btn { background:#fff; border:1px solid var(--border); border-radius:6px; padding:4px 10px; cursor:pointer; font-size:13px; transition:.15s; }
.pdfjs-btn:hover:not(:disabled) { background:var(--bg); border-color:#94A3B8; }
.pdfjs-btn:disabled { opacity:.4; cursor:default; }
.pdfjs-page-info { font-size:12px; color:var(--slate); display:flex; align-items:center; gap:4px; }
.pdfjs-page-input { width:44px; border:1px solid var(--border); border-radius:5px; padding:3px 6px; text-align:center; font-size:12px; }
.pdfjs-zoom-label { font-size:12px; color:var(--slate); min-width:36px; text-align:center; }
.pdfjs-spacer { flex:1; }
.pdfjs-canvas-wrap { background:#F1F5F9; display:flex; justify-content:center; padding:20px; min-height:200px; }
.pdfjs-loading { display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--slate); width:100%; }
.pdfjs-canvas { max-width:100%; box-shadow:0 4px 20px rgba(0,0,0,.12); }

/* ─── XML VIEWER ────────────────────────────────────── */
.xml-search { width:100%; padding:10px 14px; border:1px solid var(--border); border-radius:9px; font-size:13px; margin-bottom:12px; outline:none; }
.xml-search:focus { border-color:var(--blue); box-shadow:0 0 0 3px var(--blue-t); }
.xml-view { background:#1E293B; color:#E2E8F0; border-radius:10px; padding:20px; overflow-x:hidden; font-family:'Courier New',monospace; font-size:12px; line-height:1.6; max-height:600px; overflow-y:auto; white-space:pre-wrap; word-break:break-all; }
.xt-tag  { color:#60A5FA; }
.xt-attr { color:#FCD34D; }
.xt-val  { color:#86EFAC; }
.xml-view .xt-tag  { color:#60A5FA; }
.xml-view .xt-attr { color:#FCD34D; }
.xml-view .xml-view .xt-val  { color:#86EFAC; }
.xml-view mark { background:rgba(250,204,21,.3); color:#FEF08A; border-radius:2px; }

/* ─── KONTEKSTOWY CTA (dół) ─────────────────────────── */
.bottom-cta {
  margin-top: 48px;
  background: linear-gradient(135deg,#1E3A8A 0%,#2563EB 100%);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 8px 32px rgba(37,99,235,.25);
}
.bottom-cta--landing { background: linear-gradient(135deg,#0F172A 0%,#1E3A8A 100%); }
.bottom-cta-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.bottom-cta-icon { font-size: 40px; flex-shrink: 0; }
.bottom-cta-text { flex: 1; min-width: 240px; }
.bottom-cta-text strong { display:block; font-size:18px; font-weight:800; color:#fff; margin-bottom:6px; font-family:'Bricolage Grotesque',sans-serif; }
.bottom-cta-text span { font-size:14px; color:rgba(255,255,255,.7); line-height:1.6; }
.bottom-cta-btns { display:flex; gap:10px; flex-shrink:0; flex-wrap:wrap; }
.bottom-cta .btn-primary { background:#22C55E; box-shadow:0 4px 16px rgba(34,197,94,.35); }
.bottom-cta .btn-primary:hover { background:#16A34A; }
.bottom-cta .btn-outline { border-color:rgba(255,255,255,.35); color:#fff; }
.bottom-cta .btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.1); }
@media(max-width:700px){ .bottom-cta{ padding:24px 20px; } .bottom-cta-content{ flex-direction:column; text-align:center; align-items:center; } .bottom-cta-btns{ justify-content:center; width:100%; } .bottom-cta-btns .btn{ flex:1; justify-content:center; } }

/* ─── ZAŁĄCZNIK NIEDOSTĘPNY ─────────────────────────── */
.att-unavailable {
  font-size: 12px;
  color: var(--slate-l);
  font-style: italic;
}

/* ─── PDF LOADING STATE ─────────────────────────────── */
.pdfjs-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--slate);
  width: 100%;
  min-height: 80px;
}

/* ─── PODPISY ELEKTRONICZNE ─────────────────────────── */
.sigs-list { display: flex; flex-direction: column; gap: 16px; }

.sig-row {
  display: flex;
  gap: 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px 18px;
}

.sig-num {
  width: 32px; height: 32px;
  background: #2B5BA6;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}

.sig-body { flex: 1; min-width: 0; }

.sig-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.sig-type {
  font-size: 11px;
  font-weight: 700;
  background: #EFF6FF;
  color: #2B5BA6;
  border-radius: 6px;
  padding: 3px 10px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.sig-ts-badge {
  font-size: 11px;
  font-weight: 600;
  background: #F0FDF4;
  color: #15803D;
  border-radius: 6px;
  padding: 3px 10px;
}

.sig-dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4px 16px;
  margin: 0;
  font-size: 13px;
}

.sig-dl dt {
  color: #64748B;
  font-weight: 500;
  padding: 3px 0;
}

.sig-dl dd {
  color: #1E293B;
  font-weight: 500;
  margin: 0;
  padding: 3px 0;
  word-break: break-all;
}

.sig-serial {
  font-size: 11px;
  color: #64748B;
}

@media(max-width:600px) {
  .sig-dl { grid-template-columns: 1fr; }
  .sig-dl dt { padding-bottom: 0; color: #94A3B8; font-size: 11px; }
}
