/**
 * Defensive baseline styles for the Help Panel widget.
 *
 * Prevents integrator apps from unintentionally overriding inherited CSS properties
 * (e.g., text-align, font-family) via global styles.
 *
 * These rules have lower specificity than inline styles (style=) and MUI's sx prop,
 * so existing component styling remains unaffected.
 */

.help-panel {
  text-align: left;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  line-height: 1.5;
  letter-spacing: normal;
  font-weight: 400;
  font-style: normal;
  direction: ltr;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0;
  white-space: normal;
  user-select: text;
}
