diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 15410b9e..be0f404d 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -379,15 +379,8 @@ function App() {
)}
- {/* User Authentication, Favorites & Dark Mode */}
+ {/* User Authentication & Dark Mode */}
- {/* Favorites Menu - Only for authenticated users */}
-
-
{/* Authentication Button */}
{authAvailable && (
@@ -432,6 +425,19 @@ function App() {
+ {/* Favorites Menu - Positioned below header for authenticated users */}
+ {user && (
+
+ )}
+
{/* Main Content */}
diff --git a/frontend/src/components/FavoritesMenu.tsx b/frontend/src/components/FavoritesMenu.tsx
index 4117b445..d925d438 100644
--- a/frontend/src/components/FavoritesMenu.tsx
+++ b/frontend/src/components/FavoritesMenu.tsx
@@ -166,7 +166,7 @@ const FavoritesMenu: React.FC = ({ user, formatBookName, get
{/* Favorites Dropdown */}
{isOpen && (
-