body {  
  /* cursor: url('/custom-cursor.png'), auto; */
}

.cursor {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
}

.cursor-trail {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: rgba(255, 0, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
}