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

/* 選んだ電池の詳細（キー: 値のリスト） */
.bat-detail {
  display: flex;
  flex-direction: column;
  margin-top: var(--sg-space-3, 12px);
  border-top: 1px solid var(--sg-border, #e5e7eb);
}
.bat-row {
  display: flex;
  align-items: baseline;
  gap: var(--sg-space-3, 12px);
  padding: 7px 0;
  border-bottom: 1px solid var(--sg-border, #e5e7eb);
}
.bat-row__key {
  flex: 0 0 6.5em;
  font-weight: 600;
  color: var(--sg-fg, #222);
}
.bat-row__val {
  flex: 1 1 auto;
  color: var(--sg-muted-fg, #555);
  word-break: break-word;
}

/* 全早見表 */
.bat-chart__group {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--sg-space-4, 16px) 0 var(--sg-space-2, 8px);
}
.bat-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.bat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  white-space: nowrap;
}
.bat-table th,
.bat-table td {
  text-align: left;
  padding: 6px 10px 6px 0;
  border-bottom: 1px solid var(--sg-border, #e5e7eb);
  vertical-align: top;
}
.bat-table th {
  font-weight: 600;
  color: var(--sg-muted, #777);
  border-bottom: 2px solid var(--sg-border, #e5e7eb);
}
.bat-table td {
  color: var(--sg-muted-fg, #555);
}
.bat-table__name {
  font-weight: 600;
  color: var(--sg-fg, #222);
}
