/**
 * WPBakery Integration CSS Fixes
 */

/* Fix for WPBakery pages to display header properly */
.wpb-content-wrap {
    width: 100%;
    clear: both;
    margin-top: 30px; /* Space after header */
}

/* Fix for WPBakery row margins */
.vc_row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Ensure WPBakery content container takes full width */
#wpb-content-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Fix for WPBakery full-width sections */
.vc_row.vc_row-full-width {
    max-width: 100vw !important;
}

/* Add space after header on WPBakery pages */
body.page .site-header + #wpb-content-container {
    margin-top: 30px;
} 

.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
    margin-bottom: 0 !important;
}