.profile-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.profile-pic {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  object-fit: cover;
  border: 2px solid white;
}

.dropdown {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background: white;
  border-radius: 8px;
  min-width: 150px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
}

.dropdown a {
  display: block;
  padding: 10px;
  color: black;
  text-decoration: none;
}

.dropdown a:hover {
  background: #f5f5f5;
}