.edit-img-profile {
  position: relative;
  width: 126px;
  height: 126px;
  background-color: var(--blue);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* agar foto penuh */
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s ease;
}

/* overlay hitam transparan */
.edit-img-profile::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

/* icon kamera di tengah */
.edit-img-profile img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* saat hover, tampilkan overlay & ikon */
.edit-img-profile:hover::after,
.edit-img-profile:hover img {
  opacity: 1;
}