/* css/style_common_table.css */
/* 最終更新日: 2026-06-03 */
/* SeaArt/Civitai のマッピング表で共通利用する軽量スタイル */

:root {
  --border-color: #e5e7eb;
  --bg-header: #f8fafc;
  --text-muted: #6b7280;
  --text-strong: #0f172a;
  --accent: #2563eb;
  --warn: #b83280;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Meiryo", "Yu Gothic UI", sans-serif;
  color: var(--text-strong);
  background: #fff;
}

main { padding: 16px; }

h1 {
  font-size: 20px;
  margin: 8px 0 12px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

thead th {
  background: var(--bg-header);
  text-align: left;
  padding: 10px 8px;
  border: 1px solid var(--border-color);
  font-weight: 600;
}

tbody td {
  padding: 10px 8px;
  border: 1px solid var(--border-color);
  vertical-align: top;
}

.acct-link {
  font-weight: 600;
  color: var(--text-strong);
  text-decoration: none;
  word-break: break-all;
}
.acct-link:hover {
  text-decoration: underline;
  color: var(--accent);
}

.civitai-icon-container,
.seaart-icon-container {
  display: inline-flex;
  gap: 6px;
  vertical-align: middle;
  margin-left: 6px;
}

.civitai-icon-link img,
.seaart-icon-link img {
  display: inline-block;
  width: 22px;
  height: 22px;
}

.browser-info-line {
  margin: 2px 0;
  line-height: 1.3;
}

.browser-name {
  font-weight: 700;
}

.profile-name {
  color: var(--text-muted);
  margin-left: 2px;
}

.label-line {
  margin-top: 6px;
  color: var(--text-muted);
}

.warning-text {
  margin-top: 4px;
  color: var(--warn);
}

/* テーブルのキャプションや補助テキスト */
.muted {
  color: var(--text-muted);
  font-size: 12px;
}

/* モバイル最適化（小画面でカード風） */
@media (max-width: 640px) {
  thead { display: none; }
  table, tbody, tr, td { display: block; width: 100%; }
  tbody td { border-left: none; border-right: none; }
  tbody tr { border: 1px solid var(--border-color); margin-bottom: 8px; }
  tbody td:first-child { background: var(--bg-header); }
}
/* css/style_nav_unified.css */
/* 最終更新日: 2026-06-03 */

:root {
  --nav-bg: #0f172a;
  --nav-fg: #e5e7eb;
  --nav-fg-active: #fff;
  --nav-accent: #60a5fa;
}

header {
  background: var(--nav-bg);
  color: var(--nav-fg);
}

.nav-menu {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 12px;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-menu a {
  color: var(--nav-fg);
  text-decoration: none;
  font-weight: 600;
}

.nav-menu a:hover {
  color: var(--nav-accent);
  text-decoration: underline;
}

.nav-menu li strong {
  color: var(--nav-fg-active);
  font-weight: 700;
  border-bottom: 2px solid var(--nav-accent);
  padding-bottom: 2px;
}
/* css/blowzermap_for_civitai.css */
/* 任意（共通スタイルに加える微調整用） */

.account-cell .acct-link { letter-spacing: 0.2px; }
.meta-cell .warning-text { font-style: italic; }

/* Civitai 固有の小アイコン調整（必要に応じて） */
.civitai-icon-link img { opacity: 0.9; }
.civitai-icon-link:hover img { opacity: 1; transform: scale(1.02); transition: transform .12s ease; }
