/* ============================================================================
 * specs-table.css — model specs table + provenance source tags.
 * ========================================================================== */

.hscl-specs-wrap { margin: 8px 0 12px; }

.hscl-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 4px 0;
}
.hscl-specs-table th,
.hscl-specs-table td {
  border: 1px solid var(--border);
  padding: 4px 8px;
  text-align: left;
  vertical-align: top;
}
.hscl-specs-table th {
  background: var(--panel-2);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}
.hscl-specs-table .hscl-spec-key {
  font-weight: 500;
  white-space: nowrap;
  width: 18%;
}
.hscl-specs-table .hscl-spec-row-cont .hscl-spec-key {
  border-top: 1px dashed var(--border);
}
.hscl-specs-table .hscl-spec-val { width: 38%; }
.hscl-specs-table .hscl-spec-ref {
  font-size: 12px;
  color: var(--ink-soft);
  width: 28%;
  word-break: break-all;
}
.hscl-specs-table .hscl-spec-notes {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* Source-tag chips (provenance) */
.hscl-src {
  display: inline-block;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 3px;
  color: #fff;
}
.hscl-src--datasheet { background: var(--src-datasheet); }
.hscl-src--website   { background: var(--src-website); }
.hscl-src--testing   { background: var(--src-testing); }
.hscl-src--simulated { background: var(--src-simulated); }
.hscl-src--manual    { background: var(--src-manual); }
.hscl-src--inferred  { background: var(--src-inferred); }
.hscl-src--other     { background: var(--src-other); }
