/* profile container */
.profile-menu {
  position: relative;
  display: inline-block;
  color: white;
}

/* button (image + name) */
.profile-btn {
  cursor: pointer;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* profile image */
.profile-btn img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

/* dropdown box */
.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 35px;

  background: rgba(0,0,0,0.9);
  border-radius: 10px;

  min-width: 140px;
  padding: 10px;

  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* dropdown links */
.dropdown a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 8px;
  border-radius: 6px;
  transition: 0.2s;
}

/* hover effect */
.dropdown a:hover {
  background: rgba(255,255,255,0.1);
}

/* show dropdown on hover */
.profile-menu:hover .dropdown {
  display: block;
}