.emoji-cross-container {
  position: relative;
  display: inline-block;
/*  font-size: 3rem; /* Control the overall scale here */
}

.cross {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Allows clicks to pass through to the emoji */
  
  /* Optional visual adjustments */
  font-size: 0.9em; /* Makes the X fit perfectly inside the emoji boundary */
  opacity: 0.85;    /* Makes the underlying emoji slightly visible */
}
