#profile_page_picture{
height:100px;
width:100px;
border-radius:100px;
}

#user_profile_main {
  display: flex;
  flex-direction: column;
  gap: 10px; 
}


#profile_picture_wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
}

#profile_page_picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#edit_overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 12px;
  text-align: center;
  padding: 6px 0;
  opacity: 0;
  transition: opacity 0.3s;
}

#profile_picture_wrapper:hover #edit_overlay {
  opacity: 1;
}

#upload_input {
  display: none;
}


