.image-hover-container {
  margin: 0 2px;
  height: 64px;
  width: 64px;
  position: relative;
}

.image-hover-container:hover::before {
  content: '🗑️';
  position: absolute;
  inset: 0;
  color: white;
  background: rgba(0, 0, 0, 0)
    linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%) repeat
    scroll 0% 0%;
  font-size: 24px;
  text-align: center;
  line-height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-hover-container {
  margin: 0 2px;
  height: 64px;
  width: 64px;
  position: relative;
}

.video-hover-container:hover::before {
  content: '🗑️';
  position: absolute;
  inset: 0;
  color: white;
  background: rgba(0, 0, 0, 0)
    linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%) repeat
    scroll 0% 0%;
  font-size: 24px;
  text-align: center;
  line-height: 128px;
  display: flex;
  justify-content: center;
  align-items: center;
}

