.text-cursor-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.text-cursor-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.text-cursor-item {
  position: absolute;
  user-select: none;
  white-space: nowrap;
  padding: 0 0.75rem;
  font-size: 1.75rem;
  line-height: 1.2;
  transform-origin: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: transform, opacity;
}

.text-cursor-item.removing {
  opacity: 0;
  transform: scale(0.6) translateZ(0);
}
