.movement-marker {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: linear-gradient(
        135deg,
        #f43f6e,
        #9333ea
    );

    border: 3px solid white;
    border-radius: 50%;

    box-shadow: 0 4px 10px rgba(0,0,0,0.30);

    transform: translate(-50%, -50%);

    user-select: none;
}

.movement-marker svg {
    width: 24px;
    height: 24px;

    stroke: currentColor;
    stroke-width: 2.3;
}