/* =====================================================================
   style.css — スーツの号数早見 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* 結果の内訳（ラベル→値の行） */
.sg-result-rows {
  display: flex;
  flex-direction: column;
  margin-top: var(--sg-space-3, 12px);
  border-top: 1px solid var(--sg-border, #e5e7eb);
}
.sg-result-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sg-space-3, 12px);
  padding: 6px 0;
  border-bottom: 1px solid var(--sg-border, #e5e7eb);
}
.sg-result-row__label {
  color: var(--sg-muted, #555);
  flex: 0 0 auto;
}
.sg-result-row__value {
  font-weight: 600;
  text-align: right;
}

/* 大きなサイズ表記は見やすく */
.sg-result__value {
  letter-spacing: 0.02em;
}

/* 早見表（横スクロール可能に） */
.sg-chart-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sg-chart {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.95rem;
}
.sg-chart th,
.sg-chart td {
  padding: 6px 10px;
  border-bottom: 1px solid var(--sg-border, #e5e7eb);
  text-align: left;
  white-space: nowrap;
}
.sg-chart thead th {
  color: var(--sg-muted, #555);
  font-weight: 600;
}
.sg-chart tbody tr.is-current {
  background: var(--sg-accent-weak, #eef2ff);
}
.sg-chart tbody tr.is-current th,
.sg-chart tbody tr.is-current td {
  font-weight: 700;
}
