/* ── Target prices ── */
.target-prices {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.target-prices__header {
  margin-bottom: 8px;
}

.target-prices__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.target-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--surface-raised);
}

.target-row:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.target-row__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.target-row__label {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.target-row__per-order {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

.target-row__value {
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: -0.01em;
}
