.profile-avatar-picker {
  position: relative;
  width: 128px;
  height: 128px;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.profile-avatar-picker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity .15s ease;
}

.profile-avatar-picker:hover .avatar-overlay {
  opacity: 1;
}

.avatar-overlay img {
  width: 28px;
  height: 28px;
  filter: invert(1);
}

.avatar-actions button {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.85rem;
  color: #777;
  cursor: pointer;
}

.avatar-actions button:hover {
  text-decoration: underline;
  color: #444;
}
