/* ===== screen-app-home ページ専用スタイル ===== */

/* ===== ② 場面リスト・構成テーブル ===== */
.use-case-list {
  margin: 8px 0 0;
  padding-left: 20px;
}

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

.parts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 8px 0 4px;
}

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

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

.parts-table td:first-child {
  text-align: center;
  white-space: nowrap;
}

/* ===== ③ デモプレビュー・別ウィンドウボタン ===== */
.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: 14px 16px;
  background: #F4F8FE;
  border: 1px solid #D6E4F7;
  border-radius: 8px;
}

.demo-try-label {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #2B7FE8;
}

.demo-try-list {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
}

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

.demo-try-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: #5A6A7A;
}

/* ===== ④ コード表示の高さ制限 ===== */
/* 応用例はコード量が多いため、表示だけスクロールさせる（全文掲載のまま） */
.tab-content pre {
  max-height: 480px;
  overflow-y: auto;
}
