/* TechTools — mock-data styles [v2.1 §4.7 G1] */
.md-fields {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.md-fields h3 {
  font-family: var(--font-hero);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.md-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 18px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}
.md-check input { accent-color: var(--accent-teal); width: 15px; height: 15px; cursor: pointer; }
.md-count-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}
.md-count-row .w-input {
  width: 80px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
  margin-left: 8px;
}
.md-count-row .w-input:focus { border-color: var(--accent-teal); }
.md-results {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
}
.md-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.md-table-wrap {
  overflow: auto;
  max-height: 420px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.md-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.md-table th, .md-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: left;
  white-space: nowrap;
}
.md-table th {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  font-weight: 500;
  position: sticky;
  top: 0;
}
.md-table td {
  color: var(--text-primary);
  font-family: 'SF Mono','Fira Code','Consolas',monospace;
  font-size: 11px;
}
.md-table tr:hover td { background: rgba(255,255,255,0.03); }
