
        <div class="topbar">
            <button
                onclick="toggleSidebar()"
                style="
                    padding:10px 12px;
                    cursor:pointer;
                    border:none;
                    border-radius:8px;
                    background:#f3f4f6;
                    font-size:18px;
                    line-height:1;
                    transition:.2s;
                "
                onmouseover="this.style.background='#e5e7eb'"
                onmouseout="this.style.background='#f3f4f6'">
                ☰
            </button>
            <!-- Right -->
               <div class="topbar-right">

    <div class="profile-dropdown">

        <button type="button" class="profile-btn" onclick="toggleProfileMenu()">
            <img
                src="<%= user.profile_image ? user.profile_image : '/images/default.png' %>"
                class="profile-img"
                alt="Profile">

            <span><%= user.name %></span>

            <i class="fas fa-chevron-down"></i>
        </button>

        <div class="dropdown-menu" id="profileMenu">
            <a href="<%= ROUTES.ADMIN_PROFILE %>">
                <i class="fas fa-user"></i>
                My Profile
            </a>

           

            <a href="<%= ROUTES.ADMIN_LOGOUT %>" class="logout">
                <i class="fas fa-sign-out-alt"></i>
                Logout
            </a>
        </div>

    </div>

</div>

        </div>