/* Chat bubble — scoped styles for markdown content in chat messages */

/* Task list checkboxes */
.chat-bubble .task-list-item {
  list-style: none;
  margin-left: -1.5rem;
}

.chat-bubble .task-list-inline {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin: 0;
  cursor: default;
}

.chat-bubble .task-list-checkbox {
  margin-right: 0.4em;
  vertical-align: middle;
  accent-color: var(--traqx-blue-600, #026CFF);
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* Inline citation badges */
.chat-bubble .citation {
  display: inline;
  padding: 0.1em 0.4em;
  font-size: 0.8em;
  font-weight: 500;
  color: var(--traqx-blue-600, #026CFF);
  background-color: var(--traqx-blue-50, #F0F7FF);
  border: 1px solid var(--traqx-blue-200, #CCE0FF);
  border-radius: 4px;
  cursor: default;
  white-space: nowrap;
}

.chat-bubble .citation::before {
  content: "📄 ";
  font-size: 0.85em;
}
