<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global styles that apply across the entire application */

/* Make buttons and interactive elements show pointer cursor on hover */
button,
input[type="submit"],
input[type="button"],
.btn,
a.btn,
.button,
a[role="button"],
a[href]:not(.not-clickable),
[data-action],
[type="checkbox"],
[type="radio"],
select,
summary,
details,
[data-controller] button,
[data-controller] [role="button"],
.pointer-cursor,
.accordion-button,
.nav-link {
  cursor: pointer !important;
}

/* Apply pointer cursor to any element with click behavior */
[onclick],
[data-toggle],
[data-target],
[data-dismiss],
[data-bs-toggle],
[data-bs-target],
[data-bs-dismiss] {
  cursor: pointer !important;
}

/* Apply pointer cursor to any element with hover styling */
*:hover:active,
*:focus-visible {
  cursor: pointer;
}</pre></body></html>