/* Fix for ApPageBuilder Theme Configuration - Force Lato font */
body, 
h1, h2, h3, h4, h5, h6, 
p, a, span, 
.menu-title,
.nav-link,
nav {
    font-family: "Lato", sans-serif !important;
}

/* Fix for displayTop 3-column layout - Force float layout to work */

/* Add spacing at top (Bootstrap difference V7/V8) */
.header-top {
    padding-top: 10px;
    padding-bottom: 0px;
}

/* Reduce search block height to match V7 */
#leo_search_block_top {
    height: auto !important;
    max-height: 100px !important;
}

/* Remove all margins from ApRow and ApColumn to reduce header height */
.header-top .ApRow {
    margin: 0 !important;
}

.header-top .ApRow .ApColumn {
    float: left !important;
    display: block !important;
}

/* Ensure columns have proper widths even on smaller screens */
@media (min-width: 768px) {
    .header-top .col-logo {
        float: left !important;
        width: 16.66667% !important;
    }
    
    .header-top .col-menu {
        float: left !important;
        width: 66.66667% !important;
    }
    
    .header-top .col-xl-2:last-child {
        float: left !important;
        width: 16.66667% !important;
    }
}

/* Clear floats after row */
.header-top .ApRow:after {
    content: "";
    display: table;
    clear: both;
}
