
  .cursor-dot,
  .cursor-label {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 999999;
    transition: opacity 0.3s ease;
    opacity: 0;
  }

  .cursor-dot {
    width: 10px;
    height: 10px;
    background-color: #9796f0;
    border-radius: 50%;
  }

  .cursor-label {
    width: 90px;
    height: 90px;
    background-color: #9796f0;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-family: 'GilroyA', Arial, sans-serif;
    font-weight: 600;
    text-align: center;
    line-height: 90px;
    white-space: nowrap;
  }

  .cursor-visible {
    opacity: 1 !important;
  }

