Botched Table | Inside AI Chatbot Window

Hi there, @Petar_Dietrich :waving_hand:

Yep, this is a natural limitation, since the chat window isnโ€™t supposed to be used for tables. However, here is a CSS code from our devs for a better table display :slightly_smiling_face:

table {
  width: 100%;
  word-wrap: break-word;
  table-layout: fixed;
  border: 1px solid black;
  border-collapse: collapse;
  font-size: 14px;
  hyphens: auto; 
}

table th,
table td {
  text-align: center !important;
  border: 1px solid black;
  padding: 4px; 
  hyphens: auto; 
}