.survey-input {
  width: 100%; padding: 8px 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .85rem; font-family: var(--font-body);
  color: var(--text-primary); background: var(--bg);
  outline: none; transition: border-color .2s; box-sizing: border-box;
}
.survey-input:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
.fi-ord {
  width: 100%; padding: 8px 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .83rem; font-family: var(--font-body);
  color: var(--text-primary); background: var(--bg);
  outline: none; transition: border-color .2s; box-sizing: border-box;
}
.fi-ord:focus { border-color: var(--success); box-shadow: 0 0 0 3px rgba(16,185,129,.12); }
.fi-ord {
  width: 100%; padding: 8px 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .83rem; font-family: var(--font-body);
  color: var(--text-primary); background: var(--bg);
  outline: none; transition: border-color .2s; box-sizing: border-box;
}
.fi-ord:focus { border-color: var(--success); box-shadow: 0 0 0 3px rgba(16,185,129,.12); }

/* 閱讀頁 Quill 樣式（不顯示工具列，只渲染內容） */
.message-content.ql-editor {
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-primary);
}
.message-content.ql-editor img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 4px 0;
}
.message-content.ql-editor .ql-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  margin: 8px 0;
  display: block;
}
.message-content.ql-editor a {
  color: var(--accent-dark);
  text-decoration: underline;
}
.message-content.ql-editor blockquote {
  border-left: 4px solid var(--border);
  padding-left: 12px;
  color: var(--text-secondary);
  margin: 8px 0;
}
.message-content.ql-editor pre.ql-syntax {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 12px;
  font-size: .82rem;
  overflow-x: auto;
}