.forum-grid { display: grid; grid-template-columns: 1fr 320px; gap: 16px; }
html.compact .forum-grid { grid-template-columns: 1fr; }
.tabs { display: flex; gap: 6px; margin-bottom: 10px; }
.tabs button { background: var(--panel-2); color: var(--muted); border: 1px solid var(--line); }
.tabs button.active { background: var(--accent); color: #0b0c10; }
.thread { border-bottom: 1px solid var(--line); padding: 10px 0; }
.thread .meta { font-size: 12px; color: var(--muted); }
.thread img { max-width: 140px; border-radius: 6px; margin: 4px 4px 0 0; }
.chatlog { height: 50vh; overflow-y: auto; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 8px; margin-bottom: 8px; }
.chatlog .m { margin-bottom: 4px; font-size: 13px; } .chatlog .m b { color: var(--accent); }
#chatSend input { flex: 1; }
