/* Reset Chat Button - injected into the left side of the Chainlit header */
#chainlit-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  margin-left: 4px;
  background: transparent;
  color: hsl(var(--muted-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  vertical-align: middle;
}

#chainlit-reset-btn:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-color: hsl(var(--accent));
}

#chainlit-reset-btn:active {
  opacity: 0.75;
}

#chainlit-reset-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

#chainlit-reset-btn span {
  line-height: 1;
}
