/*your custom css goes here*/
/* This code forces all main containers and elements to fit within the screen width. */

/* Target the main body and content wrappers */
body,
.aiz-content-wrapper,
.aiz-main-content {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important; /* This should stop the horizontal scrolling */
}

/* Target tables and images which often cause overflow */
table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
}

img,
video,
iframe {
    max-width: 100% !important;
    height: auto !important;
}
