/* ============================================================
   title・description音速収集タキさん — style.css
   田鎖さん（style.css）をベースにタキさん固有スタイルを追加
   ============================================================ */

/* ── リセット ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── デザイントークン ── */
:root {
  --bg:           #FDF4EA;
  --surface:      #FFFFFF;
  --surface2:     #F5EAD8;
  --border:       rgba(73,167,206,0.15);
  --border2:      rgba(73,167,206,0.30);
  --text:         #2C2C2C;
  --muted:        #7A7A7A;
  --accent:       #49A7CE;
  --accent-dark:  #3388AD;
  --accent-light: rgba(73,167,206,0.10);
  --accent-glow:  rgba(73,167,206,0.20);
  --success:      #2DA870;
  --warning:      #D48A10;
  --danger:       #D64545;
  --success-bg:   rgba(45,168,112,0.09);
  --warning-bg:   rgba(212,138,16,0.09);
  --danger-bg:    rgba(214,69,69,0.09);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* ── ベース ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.7;
}

/* ============================================================
   ヘッダー（田鎖さん完全準拠）
   ============================================================ */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border2);
  padding: 0 2rem;
}

.header-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: block;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0;
}

.header-free-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
}

.header-usage-count {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
}

.header-usage-count strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--accent-dark);
}

/* ============================================================
   ヒーロー（田鎖さん完全準拠）
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #FDF4EA 0%, #FEF1DA 50%, #FDF4EA 100%);
  border-bottom: 2px solid rgba(73,167,206,0.15);
  padding: 2.8rem 2rem 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.hero-text {
  flex: 1;
  padding-bottom: 2.5rem;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 1.4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #AAAAAA;
  flex-shrink: 0;
  display: inline-block;
}

.hero-chara {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-chara img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

/* ============================================================
   ツール本体（田鎖さん完全準拠）
   ============================================================ */
.tool-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.tool-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-heading::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* 入力カード */
.input-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: 0 2px 16px rgba(73,167,206,0.07);
}

.input-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.input-card .sub {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

/* ── カード見出し行（リセットボタン含む）── */
.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

.card-header-row h2 {
  margin-bottom: 0;
}

.btn-reset {
  flex-shrink: 0;
  padding: 0.3rem 0.9rem;
  background: none;
  color: var(--muted);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}

.btn-reset:hover {
  color: var(--danger);
  border-color: rgba(214,69,69,0.4);
  background: var(--danger-bg);
}

/* ── テーブル下ダウンロードボタン ── */
.result-dl-btns--bottom {
  justify-content: flex-end;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ── 入力タブ（タキさん固有）── */
.input-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}

.input-tab {
  padding: 0.45rem 1.25rem;
  border: none;
  background: var(--surface);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  outline: none;
}

.input-tab + .input-tab {
  border-left: 1px solid var(--border2);
}

.input-tab.active {
  background: var(--accent);
  color: #fff;
  font-weight: 500;
}

.input-tab:hover:not(.active) {
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* ── URL textarea（田鎖さん準拠）── */
.url-textarea {
  width: 100%;
  height: calc(10 * 1.75rem + 20px);
  min-height: 200px;
  padding: 0.75rem 1rem;
  border: 2px dashed var(--border2);
  border-radius: var(--radius-md);
  background: var(--bg);
  font-family: 'Noto Sans JP', monospace, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  resize: none;
  outline: none;
  overflow-y: auto;
  line-height: 1.75;
  transition: background 0.2s, border-color 0.2s;
  cursor: text;
  display: block;
}

.url-textarea:focus {
  background: var(--surface);
  border-color: var(--accent);
}

.url-textarea::placeholder { color: #BBB; }

.url-count-row {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: right;
  margin-top: 0.4rem;
  margin-bottom: 0;
}

/* ── ドロップゾーン（タキさん固有）── */
.drop-zone {
  border: 2px dashed var(--border2);
  border-radius: var(--radius-md);
  background: var(--bg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.drop-zone.drag-over {
  background: var(--accent-light);
  border-color: var(--accent);
}

.drop-zone-icon {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.drop-zone-main {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.drop-zone-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.btn-file-select {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  margin-bottom: 0.75rem;
}

.btn-file-select:hover { background: var(--accent-dark); }

.drop-zone-formats {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── ファイル情報バー（タキさん固有）── */
.file-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--success-bg);
  border: 1px solid rgba(45,168,112,0.25);
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

.file-info-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  word-break: break-all;
  flex: 1;
}

.file-info-count {
  font-size: 0.82rem;
  color: var(--success);
  white-space: nowrap;
}

.file-clear-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 0.2rem;
  line-height: 1;
  transition: color 0.15s;
}

.file-clear-btn:hover { color: var(--danger); }

/* ── 並列処理設定（タキさん固有）── */
.quality-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}

.quality-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.parallel-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.5rem;
}

.parallel-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text);
  user-select: none;
}

.parallel-item input[type="radio"] {
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.parallel-note {
  font-size: 0.78rem;
  color: var(--muted);
  width: 100%;
  margin-top: 0.2rem;
}

/* ── 調査ボタン（田鎖さん準拠）── */
.btn-run {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.15s, transform 0.1s;
}

.btn-run:hover  { background: var(--accent-dark); }
.btn-run:active { transform: scale(0.99); }
.btn-run:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── 中断ボタン（タキさん固有）── */
.btn-stop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid rgba(214,69,69,0.3);
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-stop:hover {
  background: rgba(214,69,69,0.15);
}

/* ── プログレス（田鎖さん準拠）── */
.progress-bar-outer {
  background: var(--border2);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.progress-bar-inner {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 0.4s ease;
}

.progress-text {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

.progress-detail {
  font-size: 0.78rem;
  color: var(--danger);
  text-align: center;
  margin-top: 0.25rem;
}

/* ── サマリー（タキさん固有）── */
.result-summary {
  margin-bottom: 1.5rem;
}

.summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.summary-item {
  flex: 1;
  min-width: 100px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  text-align: center;
}

.summary-item--ok  { border-color: rgba(45,168,112,0.3); }
.summary-item--warn{ border-color: rgba(212,138,16,0.3); }
.summary-item--err { border-color: rgba(214,69,69,0.3);  }

.summary-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.summary-item--ok  .summary-num { color: var(--success); }
.summary-item--warn .summary-num { color: var(--warning); }
.summary-item--err  .summary-num { color: var(--danger); }

.summary-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ── 結果コントロール（田鎖さん準拠）── */
.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.results-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.result-ctrl-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.result-dl-btns {
  display: flex;
  gap: 0.5rem;
}

/* ── ダウンロードボタン（田鎖さん準拠）── */
.btn-dl-single {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-dark);
  background: var(--accent-light);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s, color 0.15s;
}

.btn-dl-single:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── 結果テーブル（タキさん固有：4列構成）── */
.score-bar-wrap {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 12px rgba(73,167,206,0.06);
}

.result-table-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.result-table-body-scroll {
  max-height: calc(10 * 45px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.result-table--head,
.result-table--body {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  min-width: 700px;
}

.result-table--head thead th {
  position: sticky;
  top: 0;
  z-index: 1;
}

.result-table--head th {
  background: var(--surface2);
  padding: 0.65rem 1rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border2);
  white-space: nowrap;
}

.result-table--body td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
  font-size: 0.875rem;
  background: var(--surface);
}

.result-table--body tr:last-child td { border-bottom: none; }
.result-table--body tr:hover td { background: rgba(73,167,206,0.04); }

/* カラム幅（タキさん：NO＋URL＋Title＋Description の4列構成）*/
.col-no    { width: 52px;  }
.col-url   { width: 190px; }
.col-title { width: auto;  }
.col-desc  { width: 42%;   }

.cell-no {
  text-align: right;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  padding-right: 1rem;
}

.cell-url     { word-break: break-all; }
.cell-tag-cell{ word-break: break-all; }

.cell-tag-ok {
  display: block;
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.15rem;
}

.cell-tag-empty {
  display: inline-block;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--warning-bg);
  color: var(--warning);
}

.cell-len {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

.len--ok   { color: var(--success); }
.len--warn { color: var(--warning); }
.len--over { color: var(--danger);  }

.url-link {
  font-size: 0.8rem;
  color: var(--accent-dark);
  text-decoration: none;
}

.url-link:hover { text-decoration: underline; }

.empty-cell {
  text-align: center;
  color: var(--muted);
  padding: 2rem !important;
}

/* ── エラーログ（田鎖さん準拠）── */
.limit-error-card {
  border-color: rgba(214,69,69,0.30);
}

.error-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.error-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0.85rem;
  background: var(--danger-bg);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  flex-wrap: wrap;
}

.error-url    { color: var(--text); word-break: break-all; flex: 1; }
.error-reason { color: var(--danger); font-size: 0.78rem; white-space: nowrap; }

/* ============================================================
   コンテンツセクション（田鎖さん完全準拠）
   ============================================================ */
.content-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-heading::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-lead {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
}

/* できることグリッド（田鎖さん完全準拠）*/
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  transition: box-shadow 0.15s;
}

.feature-card:hover {
  box-shadow: 0 4px 16px rgba(73,167,206,0.10);
}

.feature-icon  { font-size: 1.5rem; margin-bottom: 0.6rem; }
.feature-title { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.feature-desc  { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* 使用例リスト（田鎖さん完全準拠）*/
.usecase-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.usecase-item {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.usecase-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-top: 1px;
}

.usecase-body strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.usecase-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   開発コストテーブル（田鎖さん完全準拠）
   ============================================================ */
.cost-table-wrap { overflow-x: auto; }

.cost-table {
  width: 100%;
  max-width: 480px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cost-table th,
.cost-table td {
  padding: 0.7rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.cost-table th {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--surface2);
  text-transform: uppercase;
}

.cost-table td:nth-child(2),
.cost-table td:nth-child(3) { text-align: right; }
.cost-table th:nth-child(2),
.cost-table th:nth-child(3) { text-align: right; }

.cost-table-total td {
  font-weight: 600;
  color: var(--text);
  background: var(--accent-light);
  border-top: 2px solid var(--border2);
  border-bottom: none;
}

/* ============================================================
   フッター（田鎖さん準拠）
   ============================================================ */
footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 2rem;
  border-top: 1px solid var(--border2);
}

/* ============================================================
   レスポンシブ（田鎖さん準拠・ブレークポイント統一）
   ============================================================ */
@media (max-width: 600px) {
  .hero h1          { font-size: 1.4rem; }
  .hero-chara       { display: none; }
  .features-grid    { grid-template-columns: 1fr; }
  .results-header   { flex-direction: column; align-items: flex-start; }
  .input-card       { padding: 1.25rem 1.1rem; }
  .summary-grid     { gap: 0.5rem; }
  .summary-item     { min-width: 80px; padding: 0.65rem 0.75rem; }
  .summary-num      { font-size: 1.25rem; }
  .input-tabs       { width: 100%; }
  .input-tab        { flex: 1; text-align: center; }
  .parallel-row     { flex-direction: column; align-items: flex-start; }
  .header-usage-count { display: none; }
}

@media (max-width: 400px) {
  .result-dl-btns  { width: 100%; }
  .btn-dl-single   { flex: 1; justify-content: center; }
}
