/**
 * Bubbles deals list: size tag/badge columns to content (only when html.bubbles-enabled).
 * Core tables use table-fixed + overflow-hidden which truncates badges like "עסק / משרד".
 */
html.bubbles-enabled table#table-deals {
  table-layout: auto !important;
}

html.bubbles-enabled table#table-deals td > div > .overflow-hidden,
html.bubbles-enabled table#table-deals td .overflow-hidden {
  overflow: visible !important;
}

html.bubbles-enabled table#table-deals td [data-slot='badge'],
html.bubbles-enabled table#table-deals td .inline-flex.items-center.rounded-md {
  white-space: nowrap !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: unset !important;
}

html.bubbles-enabled table#table-deals th,
html.bubbles-enabled table#table-deals td {
  width: auto !important;
}

/* Questionnaire brief / activity description: keep line breaks readable */
html.bubbles-enabled .mb-8 .leading-4,
html.bubbles-enabled .whitespace-pre-line {
  white-space: pre-line !important;
}

/* Lead name column: customer + deal title, width follows content */
html.bubbles-enabled table#table-deals .bubbles-lead-name-cell .overflow-hidden {
  overflow: visible !important;
  text-overflow: unset !important;
}

html.bubbles-enabled table#table-deals .bubbles-lead-name-cell {
  white-space: nowrap !important;
  width: auto !important;
  max-width: none !important;
}
