/* cursor.css — desactivado.
   Antes definía un cursor SVG personalizado tipo ChatGPT. Ahora usamos el
   cursor nativo del sistema operativo y del navegador para mejor accesibilidad
   y rendimiento. Si algún día se quiere reactivar, ver el historial de Git. */

html,
body {
    cursor: auto;
}

a,
button,
[role="button"],
[role="link"],
summary,
label,
select,
input[type="button"],
input[type="submit"],
input[type="reset"],
.btn,
.btn-secondary {
    cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="number"],
textarea {
    cursor: text;
}

button:disabled,
[aria-disabled="true"] {
    cursor: not-allowed;
}
