/* Global fix to prevent horizontal scroll */
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
}

/* Prevent containers from stretching beyond screen */
.container, .section, .row, .main-wrapper, .site-body {
  max-width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box;
}

/* Ensure images, iframes, and embeds are responsive */
img, iframe, embed, object {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Make buttons and floaters not stretch */
button, .btn, .zsiq_floatmain {
  max-width: 100%;
  white-space: normal;
}

/* Contain the Zoho SalesIQ chat bubble */
#zsiq_float, #zsiq_floatmain {
  max-width: 100vw !important;
  right: 0 !important;
  left: auto !important;
}

/* Prevent hard-coded widths in nested elements */
* {
  box-sizing: border-box;
}
