/* ==========================================
   Global Cursor Restoration
   - Performance safe
   - Divi + Custom Theme compatible
   - Avoids universal selector (*)
   - Prevents cursor:none bugs
========================================== */

/* Base cursor */
html,
body {
    cursor: auto !important;
}

/* Interactive elements */
a,
button,
input,
textarea,
select,
label,
summary {
    cursor: pointer;
}

/* Text and layout elements */
p,
span,
div,
section,
article,
main,
header,
footer,
nav,
aside {
    cursor: auto;
}