/* Center the fixed container */
.w3-top {
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    pointer-events: none; /* Allows clicks to pass through the invisible area */
}

/* Re-enable clicks for the actual menu bar */
.w3-top .w3-bar {
    pointer-events: auto;
}

/* The content wrapper inside the bar */
.menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px; /* Essential to match W3-row padding */
}

body { 
    padding-top: 85px; 
}