
/* Real arrow cursor (black & white) */
.asp-real-cursor {
    width: 0;
    height: 0;
    border-left: 12px solid black;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}

/* white outline */
.asp-real-cursor::after {
    content: "";
    position: absolute;
    left: -12px;
    top: -6px;
    border-left: 12px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
