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

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

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

/* 目安表（共通の table スタイルが無いのでツール内で定義） */
.du-table-wrap {
  overflow-x: auto;
}
.du-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.du-table th,
.du-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--sg-border, #e3e6ee);
  font-variant-numeric: tabular-nums;
}
.du-table thead th {
  font-size: 0.82rem;
  color: var(--sg-muted, #667);
  font-weight: 600;
}
.du-table td:last-child,
.du-table th:last-child {
  white-space: nowrap;
  text-align: right;
}
