/* Hide unnecessary elements */
header, footer, nav, .fusion-header, .fusion-footer, .fusion-secondary-main-menu,
.sidebar, .fusion-page-title-bar, .fusion-mobile-menu {
    display: none !important;
}

/* Expand main content to full width */
#main, .fusion-main-wrapper {
    width: 100% !important;
    margin: 0;
    padding: 0;
}

/* Set readable font */
body {
    font-family: serif;
    font-size: 12pt;
    color: #000;
    background: none;
}

/* Remove background colors and box shadows */
* {
    background: none !important;
    box-shadow: none !important;
}

/* Remove links underline but show URLs if needed */
a::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
}

a {
    text-decoration: none;
    color: black;
}

/* Page breaks */
.page-break {
    page-break-before: always;
}

/* Prevent awkward page breaks in headings or elements */
h1, h2, h3, h4, h5, h6,
img, table, .fusion-layout-column {
    page-break-inside: avoid;
}