/* =====================================================================
   style.css — お茶・紅茶の抽出の目安 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* 結果値・内訳はタブ幅数字で桁を揃える */
.sg-result__value,
.sg-result-row__value {
  font-variant-numeric: tabular-nums;
}

/* 補助ラベルを入力直下に詰める */
.sg-field .sg-help {
  margin-top: var(--sg-space-1);
}

/* ポイントは長文になりやすいので折り返しやすく */
.sg-result-row__value {
  text-align: right;
  line-height: 1.5;
}

/* 茶葉ごとの目安 早見表 */
.sg-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 var(--sg-space-3, 12px);
}
.sg-table-wrap {
  overflow-x: auto;
}
.sg-ref-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  white-space: nowrap;
}
.sg-ref-table th,
.sg-ref-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--sg-border, #e3e6ee);
}
.sg-ref-table th {
  font-weight: 600;
  color: var(--sg-muted, #666);
  border-bottom-width: 2px;
}
.sg-ref-table tbody tr:last-child td {
  border-bottom: none;
}
