/* Prevent the background from moving when the mobile menu is active */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Fix the mobile menu alignment */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Controlled by your JS toggle */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Ensure the account icon doesn't cause a scroll jump */
    .account-item {
        margin-top: 20px;
    }
}