#fps-cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#fps-cursor.highlight {
    border-color: rgba(0, 255, 101, 0.9);
}

#selected-cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 2px solid black;
    border-radius: 50%;
    pointer-events: none;
    z-index: 500;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;

}