/*
 * This CSS selector finds the <body> element, but only if it
 * contains any descendant element that has the "wire:loading" attribute.
 * This makes the cursor change globally during any Livewire request.
*/
body:has([wire\:loading]) {
    cursor: progress;
}