
/* Profile Dropdown Styles */
.profile-container {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.profile-container img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 8px;
}
.profile-container span {
  color: var(--pink, #ff2aa1);
  font-size: 14px;
  font-weight: 500;
}
.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card, #14141d);
  border: 1px solid var(--glass, rgba(255,255,255,.08));
  border-radius: 8px;
  padding: 8px 0;
  min-width: 160px;
  z-index: 9999;
  display: none;
}
.profile-container:hover .profile-dropdown {
  display: block;
}
.profile-dropdown a {
  display: block;
  padding: 8px 16px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}
.profile-dropdown a:hover {
  background: var(--pink, #ff2aa1);
  color: white;
}
