/* Add this to your theme's style.css */

/* Hide header and footer */


/* Adjust main content area to compensate for removed header/footer */
#main,
.site-main,
.site-content,
#content,
.content-area {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}

/* Ensure body takes full height without header/footer */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Make main content area fill available space */
main {
    flex: 1;
}