:root {
  --green: #159454;
  --green-dark: #08743e;
  --green-soft: #e9f7ef;
  --line: #d7e0df;
  --line2: #e9eeee;
  --text: #121417;
  --muted: #60706b;
  --bg: #f5f7f6;
  --card: #fff;
  --shadow: 0 8px 24px rgba(24,39,34,.08);
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

a { text-decoration: none; color: inherit; }
button, input { font: inherit; }

/* ── Header ─────────────────────────────────── */
.site-header {
  height: 52px;
  border-bottom: 1px solid var(--line2);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.05em;
  white-space: nowrap;
}
.logo span { color: var(--green); }

.search-area {
  position: relative;
  max-width: 360px;
}
.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.search-area input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 7px 12px 7px 32px;
  background: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color .15s;
}
.search-area input:focus { border-color: var(--green); }

.header-filters {
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: .15s;
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--green); color: var(--green); }
.filter-chip.active { background: var(--green); border-color: var(--green); color: #fff; }

/* ── Main ───────────────────────────────────── */
main { padding: 20px 28px 32px; }

.page-title { margin-bottom: 16px; }
.page-title h1 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -.02em;
}
.page-title .sub {
  margin: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

/* ── Sheet Panel ─────────────────────────────── */
.sheet-panel { margin-bottom: 28px; }

.sheet-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  height: 32px;
}
.sheet-grid-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 32px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  border-radius: 6px 0 0 0;
  border: 1px solid var(--green-dark);
  border-right: none;
  flex-shrink: 0;
}
.tab {
  height: 32px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-bottom: none;
  background: #fff;
  border-radius: 0 6px 0 0;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  cursor: default;
}

/* ── Table ───────────────────────────────────── */
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 0 6px 6px 6px;
  overflow: auto;
  background: #fff;
  box-shadow: 0 2px 8px rgba(20,40,30,.05);
}

.works-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 820px;
  table-layout: fixed;
}

.col-no      { width: 44px; }
.col-preview { width: 148px; }
.col-title   { width: auto; }
.col-ai      { width: 120px; }
.col-prompt  { width: 120px; }
.col-date    { width: 100px; }

.works-table th,
.works-table td {
  border-right: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: 0 14px;
  vertical-align: middle;
}
.works-table th:last-child,
.works-table td:last-child { border-right: none; }
.works-table tbody tr:last-child td { border-bottom: none; }

/* Letter row */
.letters th {
  height: 20px;
  padding: 2px 8px;
  color: #96a8a2;
  font-size: 11px;
  font-weight: 600;
  background: #f4f7f6;
  text-align: center;
  letter-spacing: .03em;
}

/* Column header row */
.col-headers th {
  height: 36px;
  font-weight: 700;
  font-size: 11px;
  color: #3d5048;
  background: linear-gradient(#edf8f2, #f5faf7);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* Row number */
.row-no {
  text-align: center;
  color: #a0b0aa;
  font-size: 12px;
  font-weight: 600;
  background: #fafcfb;
  user-select: none;
}

/* Clickable rows */
.work-row {
  cursor: pointer;
  transition: background .1s;
}
.work-row:hover { background: #f0faf4; }
.work-row:hover .row-no { color: var(--green); background: #edf8f2; }
.work-row:active { background: #e5f5ec; }

/* Preview cell */
.preview-cell { padding: 10px 14px; }

.thumb {
  width: 120px;
  height: 52px;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,.07);
  flex-shrink: 0;
}

/* サムネイル iframe */
.thumb-frame {
  width: 120px;
  height: 52px;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: #f0f0f0;
}
.thumb-frame iframe {
  width: 1280px;
  height: 900px;
  border: none;
  transform: scale(0.09375);
  transform-origin: top left;
  pointer-events: none;
}

.thumb-cafe {
  background-color: #f5ede3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='52'%3E%3Crect width='120' height='52' fill='%23f5ede3'/%3E%3Crect x='0' y='0' width='120' height='12' fill='%233d2010'/%3E%3Crect x='4' y='3' width='18' height='6' rx='1' fill='%23fff' opacity='.7'/%3E%3Crect x='90' y='3' width='8' height='6' rx='1' fill='%23fff' opacity='.4'/%3E%3Crect x='100' y='3' width='8' height='6' rx='1' fill='%23fff' opacity='.4'/%3E%3Crect x='28' y='17' width='64' height='5' rx='2' fill='%233d2010' opacity='.7'/%3E%3Crect x='38' y='24' width='44' height='3' rx='1' fill='%23a07050' opacity='.5'/%3E%3Crect x='46' y='30' width='28' height='8' rx='2' fill='%233d2010'/%3E%3Crect x='4' y='44' width='26' height='4' rx='1' fill='%23c8a882' opacity='.5'/%3E%3Crect x='34' y='44' width='26' height='4' rx='1' fill='%23c8a882' opacity='.5'/%3E%3Crect x='64' y='44' width='26' height='4' rx='1' fill='%23c8a882' opacity='.5'/%3E%3C/svg%3E");
}

.thumb-saas {
  background-color: #0f1e35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='52'%3E%3Crect width='120' height='52' fill='%230f1e35'/%3E%3Crect x='0' y='0' width='24' height='52' fill='%230a1628'/%3E%3Crect x='3' y='4' width='18' height='4' rx='1' fill='%23ffffff' opacity='.5'/%3E%3Crect x='3' y='12' width='14' height='3' rx='1' fill='%234a90d9' opacity='.8'/%3E%3Crect x='3' y='18' width='14' height='3' rx='1' fill='%23ffffff' opacity='.2'/%3E%3Crect x='3' y='24' width='14' height='3' rx='1' fill='%23ffffff' opacity='.2'/%3E%3Crect x='3' y='30' width='14' height='3' rx='1' fill='%23ffffff' opacity='.2'/%3E%3Crect x='28' y='4' width='26' height='16' rx='2' fill='%231a3a5c'/%3E%3Crect x='58' y='4' width='26' height='16' rx='2' fill='%231a3a5c'/%3E%3Crect x='88' y='4' width='26' height='16' rx='2' fill='%231a3a5c'/%3E%3Crect x='28' y='22' width='86' height='24' rx='2' fill='%231a3a5c'/%3E%3Cpolyline points='32,40 44,30 56,35 68,26 80,32 92,24 104,28 108,24' stroke='%234a90d9' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.thumb-portfolio {
  background-color: #111118;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='52'%3E%3Crect width='120' height='52' fill='%23111118'/%3E%3Crect x='0' y='0' width='120' height='10' fill='%230a0a12'/%3E%3Crect x='4' y='3' width='16' height='4' rx='1' fill='%23a070ff' opacity='.8'/%3E%3Crect x='80' y='3' width='10' height='4' rx='1' fill='%23ffffff' opacity='.2'/%3E%3Crect x='94' y='3' width='10' height='4' rx='1' fill='%23ffffff' opacity='.2'/%3E%3Crect x='108' y='3' width='8' height='4' rx='1' fill='%23ffffff' opacity='.2'/%3E%3Crect x='18' y='14' width='48' height='5' rx='2' fill='%23ffffff' opacity='.8'/%3E%3Crect x='18' y='22' width='36' height='3' rx='1' fill='%23a070ff' opacity='.5'/%3E%3Crect x='4' y='30' width='28' height='18' rx='2' fill='%231a1a28'/%3E%3Crect x='36' y='30' width='28' height='18' rx='2' fill='%231a1a28'/%3E%3Crect x='68' y='30' width='28' height='18' rx='2' fill='%231a1a28'/%3E%3Crect x='100' y='30' width='16' height='18' rx='2' fill='%231a1a28'/%3E%3C/svg%3E");
}

.thumb-todo {
  background-color: #f8faf8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='52'%3E%3Crect width='120' height='52' fill='%23f8faf8'/%3E%3Crect x='0' y='0' width='120' height='11' fill='%23159454'/%3E%3Crect x='4' y='3' width='20' height='5' rx='1' fill='%23fff' opacity='.8'/%3E%3Crect x='100' y='3' width='16' height='5' rx='2' fill='%23fff' opacity='.3'/%3E%3Crect x='8' y='14' width='80' height='7' rx='2' fill='%23e8f8ee' stroke='%238cd3a6' stroke-width='.5'/%3E%3Ccircle cx='13' cy='17.5' r='2.5' fill='%23159454'/%3E%3Crect x='19' y='16' width='40' height='3' rx='1' fill='%23555' opacity='.6'/%3E%3Crect x='8' y='24' width='80' height='7' rx='2' fill='%23fff' stroke='%23d0e0d5' stroke-width='.5'/%3E%3Ccircle cx='13' cy='27.5' r='2.5' fill='%23d0e0d5'/%3E%3Crect x='19' y='26' width='52' height='3' rx='1' fill='%23555' opacity='.4'/%3E%3Crect x='8' y='34' width='80' height='7' rx='2' fill='%23fff' stroke='%23d0e0d5' stroke-width='.5'/%3E%3Ccircle cx='13' cy='37.5' r='2.5' fill='%23d0e0d5'/%3E%3Crect x='19' y='36' width='30' height='3' rx='1' fill='%23555' opacity='.4'/%3E%3Crect x='8' y='44' width='32' height='5' rx='2' fill='%23159454'/%3E%3C/svg%3E");
}

.thumb-realestate {
  background-color: #f4f6f9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='52'%3E%3Crect width='120' height='52' fill='%23f4f6f9'/%3E%3Crect x='0' y='0' width='120' height='11' fill='%231a2535'/%3E%3Crect x='4' y='3' width='22' height='5' rx='1' fill='%23fff' opacity='.8'/%3E%3Crect x='70' y='3' width='12' height='5' rx='1' fill='%23fff' opacity='.2'/%3E%3Crect x='85' y='3' width='12' height='5' rx='1' fill='%23fff' opacity='.2'/%3E%3Crect x='100' y='3' width='12' height='5' rx='1' fill='%232f5e8a' opacity='.9'/%3E%3Crect x='4' y='14' width='112' height='20' rx='2' fill='%23d8e4ef'/%3E%3Crect x='14' y='18' width='50' height='4' rx='1' fill='%231a2535' opacity='.5'/%3E%3Crect x='14' y='24' width='30' height='3' rx='1' fill='%231a2535' opacity='.3'/%3E%3Crect x='4' y='38' width='34' height='12' rx='2' fill='%23fff' stroke='%23c0ccd8' stroke-width='.5'/%3E%3Crect x='42' y='38' width='34' height='12' rx='2' fill='%23fff' stroke='%23c0ccd8' stroke-width='.5'/%3E%3Crect x='80' y='38' width='34' height='12' rx='2' fill='%23fff' stroke='%23c0ccd8' stroke-width='.5'/%3E%3C/svg%3E");
}

/* Title cell */
.title-cell { padding: 7px 14px; }
.title-cell strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.title-cell span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tag-row { display: flex; gap: 5px; flex-wrap: wrap; }

/* AI cell */
.ai-cell { text-align: center; }
.ai-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  padding: 4px 10px;
  white-space: nowrap;
}
.ai-badge.claude  { background: #fdf0e8; color: #c45c1a; border: 1px solid #f4c99a; }
.ai-badge.chatgpt { background: #e8f5f0; color: #1a8c5e; border: 1px solid #9ad4bb; }
.ai-badge.gemini  { background: #e8eeff; color: #3050c8; border: 1px solid #9aaff4; }

/* Prompt cell */
.prompt-cell { text-align: center; }
.status {
  display: inline-block;
  background: #e8f8ee;
  border: 1px solid #8cd3a6;
  color: var(--green-dark);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}


/* Pills */
.pill {
  display: inline-flex;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.pill.lp        { background: #dff3e8; color: #1a7a42; border: 1px solid #b4dfc5; }
.pill.dashboard { background: #deeaf8; color: #1a4fa0; border: 1px solid #adc5ee; }
.pill.portfolio { background: #ede8f8; color: #5a35a8; border: 1px solid #c8b8ee; }
.pill.app       { background: #fdf0d8; color: #a0620a; border: 1px solid #f0d099; }
.pill.corporate { background: #daf2f7; color: #116a80; border: 1px solid #9ad8e8; }

/* Date cell */
.date-cell { font-size: 12px; color: var(--muted); text-align: center; white-space: nowrap; }

.mini-tag {
  display: inline-block;
  border: 1px solid #d4dcda;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 11px;
  background: #fafafa;
  color: #60706b;
}

.record-count {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* ── Footer ─────────────────────────────────── */
footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 0 0 20px;
}
footer p { margin: 0; }


/* ════════════════════════════════════════════
   Detail Page
   ════════════════════════════════════════════ */

.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}
.breadcrumb a { color: var(--green-dark); font-weight: 700; }
.breadcrumb span { margin: 0 6px; color: #bbb; }

.detail-page-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 20px;
}
.detail-page-head h1 { font-size: 24px; margin: 0 0 4px; }
.detail-page-head p  { margin: 0; color: var(--muted); font-size: 13px; }

.back-link { color: var(--green-dark); font-weight: 700; font-size: 13px; display: block; margin-bottom: 6px; }

.detail-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.95fr;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
}

.preview-card, .info-card, .side-card { min-width: 0; }

.record-label { font-weight: 900; color: var(--green); font-size: 14px; margin: 0 0 12px; }

.main-preview {
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #1c1711, #8a4e1c);
  position: relative;
  color: #fff;
  border: 1px solid rgba(0,0,0,.08);
}

/* iframeプレビュー */
.main-preview.iframe-preview {
  background: #e8e8e8;
  height: auto; /* JSで制御 */
  overflow: hidden;
}
.main-preview.iframe-preview iframe {
  width: 1280px;
  height: 900px;
  border: none;
  transform-origin: top left;
  pointer-events: none;
  display: block;
}
.preview-overlay-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  text-decoration: none;
}
.preview-overlay-btn:hover { background: rgba(0,0,0,.75); }

.preview-nav {
  position: absolute;
  top: 20px;
  right: 28px;
  display: flex;
  gap: 20px;
  font-size: 9px;
  letter-spacing: .08em;
  opacity: .7;
}
.preview-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.preview-copy strong { font-size: 30px; letter-spacing: .03em; line-height: 1.1; }
.preview-copy small  { font-size: 12px; opacity: .8; }
.preview-copy button {
  border: 0;
  background: rgba(255,255,255,.18);
  color: #fff;
  border-radius: 6px;
  padding: 9px 20px;
  font-weight: 700;
  cursor: pointer;
}

.thumb-strip { display: flex; gap: 10px; margin-top: 12px; }
.small-thumb {
  height: 52px;
  flex: 1;
  border-radius: 5px;
  background: linear-gradient(135deg, #1c1711, #8a4e1c);
  border: 2px solid transparent;
  cursor: pointer;
}
.small-thumb.active { border-color: var(--green); }

.info-card { border-left: 1px solid var(--line2); padding-left: 16px; }
.info-card h2 { font-size: 20px; margin: 8px 0 6px; }
.info-card > p { color: var(--muted); margin: 0 0 12px; font-size: 13px; }

.tag-chip-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tag-chip {
  font-size: 11px;
  border: 1px solid #cbd9d5;
  border-radius: 5px;
  padding: 3px 8px;
  background: #fff;
  color: #3d5048;
}
.tag-chip:first-child { background: var(--green); color: #fff; border-color: var(--green); }

.meta-list { display: grid; gap: 10px; margin: 0 0 18px; }
.meta-row  { display: grid; grid-template-columns: 100px 1fr; gap: 12px; font-size: 13px; }
.meta-row dt { color: var(--muted); }
.meta-row dd { margin: 0; font-weight: 600; }

.primary-btn, .secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  margin-top: 10px;
}
.primary-btn   { background: linear-gradient(180deg, #27aa66, #0f8d4e); color: #fff; }
.secondary-btn { border: 1px solid #cfd9d6; background: #fff; color: var(--text); }
.primary-btn:hover   { background: linear-gradient(180deg, #2ec070, #139958); }
.secondary-btn:hover { background: #f5f9f7; }
.secondary-btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
  background: #f0f0f0;
  color: #999;
  border-color: #ddd;
}

.side-card { display: grid; gap: 14px; }

.prompt-box, .download-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.box-head h3 { font-size: 13px; margin: 0; font-weight: 700; }
.copy-btn {
  border: 1px solid #cfd9d6;
  background: #fff;
  border-radius: 6px;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}
.copy-btn:hover { border-color: var(--green); color: var(--green); }

pre {
  white-space: pre-wrap;
  margin: 0;
  background: #fbfcfc;
  border: 1px solid #e4ebea;
  border-radius: 6px;
  padding: 12px;
  height: 200px;
  overflow: auto;
  font-size: 12px;
  line-height: 1.65;
  color: #22332c;
  font-family: "SF Mono", Monaco, "Courier New", monospace;
}

.download-box h3 { font-size: 13px; margin: 0 0 10px; font-weight: 700; }
.download-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.download-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.dl-icon { color: #2372c8; }
.dl-size { margin-left: auto; color: var(--muted); font-size: 12px; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: 12px 18px;
  }
  .header-filters { grid-column: 1/-1; }
  .detail-panel { grid-template-columns: 1fr; }
  .info-card { border-left: none; padding-left: 0; border-top: 1px solid var(--line2); padding-top: 16px; }
}

@media (max-width: 680px) {
  main { padding: 14px 14px 24px; }
  .site-header { padding: 10px 14px; gap: 10px; }
  .works-table { min-width: 640px; }
  .page-title h1 { font-size: 18px; }
  .main-preview { height: 240px; }
  .preview-copy strong { font-size: 22px; }
  .detail-panel { padding: 14px; gap: 14px; }
}

/* ── Mobile (≤540px) ─────────────────────────── */
@media (max-width: 540px) {
  /* Header */
  .site-header {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    padding: 10px 14px;
    gap: 8px;
  }
  .search-area { max-width: 100%; }
  .header-filters { grid-column: 1; flex-wrap: wrap; }

  /* Page title */
  main { padding: 12px 12px 32px; }
  .page-title h1 { font-size: 16px; }

  /* テーブルを非表示にしてカードリストを表示 */
  .sheet-tabs { display: none; }
  .table-wrap { border: none; border-radius: 0; background: transparent; box-shadow: none; overflow: visible; }
  .works-table { min-width: 0; display: block; }
  .works-table thead { display: none; }
  .works-table tbody { display: flex; flex-direction: column; gap: 10px; }

  .work-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line2);
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
  }
  .work-row:hover { background: #f0faf4; }

  /* 番号・サムネイル・タイトル以外を非表示 */
  .row-no { display: none; }
  .ai-cell { display: none; }
  .prompt-cell { display: none; }
  .date-cell { display: none; }

  .preview-cell {
    padding: 0;
    flex-shrink: 0;
  }
  .thumb-frame {
    width: 72px;
    height: 52px;
  }
  .thumb-frame iframe {
    width: 768px;
    height: 540px;
    transform: scale(0.09375);
  }

  .title-cell {
    padding: 0;
    flex: 1;
    min-width: 0;
  }
  .title-cell strong {
    font-size: 13px;
    white-space: normal;
    line-height: 1.3;
  }
  .title-cell span {
    display: none;
  }
  .tag-row { margin-top: 4px; }

  .record-count { font-size: 12px; padding: 8px 4px; }
}
