/* ==================================================
   NAVBAR STANDARDIZATION - WIDTH FIX
   Ensures navbar container has consistent width
   ================================================== */

/* Navbar should be full width */
.navbar {
    width: 100% !important;
    padding: 1rem 0 !important;
}

/* Container inside navbar - consistent max-width */
.navbar .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Ensure logo/brand stays consistent */
.logo {
    width: 50px !important;
    height: 50px !important;
}

.brand-text h1 {
    font-size: 1.2rem !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.brand-text p {
    font-size: 0.85rem !important;
    margin: 0 !important;
}

/* Ensure nav menu alignment */
.nav-menu {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}