
body {
  margin: 0;
  padding: 0;
  width: 100%;
  user-select: none; /* Disable text selection */
  -webkit-user-select: none; /* Disable text selection on Safari */
  -ms-user-select: none; /* Disable text selection on Edge */
  -moz-user-select: none; /* Disable text selection on Firefox */
}

img {
  /* pointer-events: none; Disable drag-and-drop for images */
  -webkit-user-drag: none; /* Disable drag-and-drop for Safari */
}

#cursor {
position: absolute;
width: 20px;
height: 20px;
border: 2px solid #00bcd4;
border-radius: 50%;
pointer-events: none;
mix-blend-mode: difference;
transition: transform 0.1s ease, opacity 0.3s ease;
animation: scale-pulse 1.5s infinite ease-in-out;
}

@keyframes scale-pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
}

.trail {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ff5733;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  animation: fade-trail 0.5s ease forwards;
  z-index: 9998;
}

@keyframes fade-trail {
  from {
    transform: scale(1);
    opacity: 0.5;
  }
  to {
    transform: scale(0.2);
    opacity: 0;
  }
}



/* <!-- CSS to Set Website Width -->
<!-- <style>

  body {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  #root {
    width: 90%;
    margin: 0 auto;
  }
</style> --> */