  #rocket {
    font-size: 30px; /* Rocket size */
    position: absolute;
    z-index: 999;
    pointer-events: none; /* Prevent blocking clicks */
  }

  /* Green Dot Styling */
  .dot {
    width: 18;/* Size of the dot */
    height: 18;
    border-radius: 50%; /* Makes it circular */
    background-color: #d5ed5b; /* Green color for the dot */
    position: relative;
    pointer-events: none; /* Make sure it doesn't block other interactions */
    transition: transform 0.1s ease-in-out; /* Smooth transition */
  }