.market-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; margin: 12px 0; }
.market-card { border: 2px solid var(--border, #e8e8e8); border-radius: 12px; padding: 14px; cursor: pointer; background: #fafafa; transition: border-color 0.15s; }
.market-card:hover { border-color: #91caff; }
.market-card.selected { border-color: #1677ff; background: #f0f7ff; }
.market-card h3 { margin: 0 0 6px; font-size: 0.95rem; }
.market-card .meta { font-size: 0.78rem; color: #646a73; line-height: 1.4; }
.market-card .tags { margin-top: 8px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: 0.72rem; padding: 2px 8px; border-radius: 999px; background: #eef2f6; color: #646a73; }
.tag.ok { background: #f6ffed; color: #389e0d; }
.opts-row { margin: 10px 0 14px; gap: 16px; }
#result-body video { max-width: 280px; border-radius: 8px; margin-top: 8px; }
#result-body pre { white-space: pre-wrap; font-size: 0.82rem; background: #fafafa; padding: 10px; border-radius: 8px; max-height: 200px; overflow: auto; }
.proj-table { width: 100%; font-size: 0.85rem; border-collapse: collapse; }
.proj-table th, .proj-table td { border-bottom: 1px solid #e8e8e8; padding: 8px 6px; text-align: left; }
