/* profile.css */
.profile-box {
  position: absolute;
  top: 120px;
  right: 40px;
  width: 220px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.profile-box.hidden {
  display: none;
}

.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}


#closeProfileBtn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #888;
}
#closeProfileBtn:hover {
  color: #333;
}
