/* AI couldn't solve it with Tailwind, but CSS did the trick */
.hover-overlay {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease;
}

.profile-picture-container:hover .hover-overlay {
  opacity: 1;
}
