/* gmcards.css · 司仪卡页（gmcards.html，复用 docs.css 的卡片/条目样式）· F49 霓虹 */

.doc-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* 长文本（系统提示词 / 对话示例）：暗底代码块，保留换行 */
.e-content.pre {
  font-family: var(--font-mono);
  font-size: 11.5px;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 220px;
  overflow-y: auto;
  line-height: 1.65;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.empty-inline {
  color: var(--text-3);
  font-family: var(--font-pixel);
  font-size: 11.5px;
  font-style: normal;
}

/* ---------- 移动端 ---------- */
@media (max-width: 900px) {
  .doc-actions .btn {
    flex: 1 1 auto;
  }
  .e-content.pre {
    max-height: 180px;
    font-size: 11px;
  }
}
