.fixedProfileContainer { position: fixed; top: 1em; right: 2.5em; z-index: 1000; } .inlineProfileContainer { display: inline-block; cursor: pointer; } .profileWrapper { display: flex; align-items: center; cursor: pointer; } .profileIconContainer { position: relative; /* Makes dropdown position relative to this container */ cursor: pointer; } .profileImage { width: 60px; height: 60px; border-radius: 50%; transition: box-shadow 0.3s ease; } .profileImage:hover { box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); } .dropdownMenu { position: absolute; top: 70px; margin-left: 1.8em; transform: translateX(-50%); background-color: #ffffff; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); border-radius: 12px; padding: 12px; width: 180px; transition: opacity 0.3s ease; opacity: 1; } .username { padding: 10px 0; font-weight: 600; text-align: center; color: #333; border-bottom: 1px solid #eee; } .menuList { list-style-type: none; padding: 0; margin: 0; } .menuItem { padding: 10px; cursor: pointer; transition: background-color 0.2s ease, color 0.2s ease; text-align: center; color: #333; font-weight: 500; border-radius: 8px; } .menuItem:hover { background-color: #f5f5f5; color: #007bff; /* Optional: Adds a blue highlight on hover */ }