/* =====================================================================
   style.css — IPアドレスの地域・位置情報 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* 緯度経度など数字列はタブ幅数字で桁を揃える */
.sg-result-row__value {
  font-variant-numeric: tabular-nums;
}

/* IPアドレスは等幅で見やすく */
#row-ip {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

/* アクションボタンの並び */
.ip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sg-space-4);
}
.ip-actions .sg-btn {
  flex: 0 0 auto;
}

/* 結果内訳のリンク（地図で見る） */
.sg-result-row__value a {
  color: var(--sg-primary, #3b5bdb);
  text-decoration: underline;
  white-space: nowrap;
}
