/* Custom CSS to increase page width */

/* Prevent horizontal scrollbar */
html, body {
    overflow-x: hidden !important;
}

/* Make body background match widget background */
body {
    background-color: var(--color-secondary-bg) !important;
}

/* Override Tailwind's max-w-screen-xl class to increase width */
.max-w-screen-xl {
    max-width: 95% !important;
}

/* Only justify text paragraphs that don't use float layout */
.content p:not([style*="float"]) {
    text-align: justify !important;
}
