/* ===== 応用例ページ：ログ閲覧画面 ===== */

/* ② この画面パターンについて — 場面リスト */
.use-case-list {
  margin: 8px 0 20px;
  padding-left: 20px;
}

.use-case-list li {
  margin-bottom: 6px;
  line-height: 1.7;
}

/* ② 構成テーブル */
.parts-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 20px;
  font-size: 14px;
}

.parts-table th,
.parts-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid #E6EBF1;
  vertical-align: top;
}

.parts-table thead th {
  background: #F1F5F9;
  color: #64748B;
  font-size: 13px;
  white-space: nowrap;
}

.parts-table td:first-child {
  width: 36px;
  color: #64748B;
  text-align: center;
}

/* ③ デモプレビュー画像＋別ウィンドウボタン */
.demo-preview-link {
  display: block;
  margin-bottom: 16px;
}

.demo-preview-img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  border: 1px solid #D0D7E0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.demo-open-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  color: #2B7FE8;
  background: #fff;
  border: 1.5px solid #2B7FE8;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.demo-open-btn:hover {
  background: #2B7FE8;
  color: #fff;
}

/* ③ 操作ヒント */
.demo-try {
  margin-top: 20px;
  padding: 16px 20px;
  background: #F4F8FE;
  border: 1px solid #D6E4FB;
  border-radius: 8px;
}

.demo-try-label {
  margin: 0 0 8px;
  font-weight: bold;
  color: #1E293B;
}

.demo-try-list {
  margin: 0 0 8px;
  padding-left: 20px;
}

.demo-try-list li {
  margin-bottom: 4px;
  line-height: 1.7;
}

.demo-try-note {
  margin: 0;
  font-size: 13px;
  color: #64748B;
}

/* ④ コード表示の高さ制限（応用例はコード量が多いため） */
.tab-content pre {
  max-height: 480px;
  overflow-y: auto;
}
