/* Sticky footer layout */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

 /* Navbar centering with search bar on the right */
 .navbar-collapse {
     position: relative;
 }

 .navbar-nav.mx-auto {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
 }

 /* Ensure search form stays on the right */
 .navbar-collapse form.ms-auto {
     margin-left: auto !important;
 }

 /* Responsive: Stack on mobile */
 @media (max-width: 991.98px) {
     .navbar-nav.mx-auto {
         position: static;
         transform: none;
     }
 }