/* Pointer cursor for all interactive / clickable elements */
a,
button,
[role="button"],
[role="tab"],
[role="menuitem"],
[role="option"],
[role="checkbox"],
[role="radio"],
[role="switch"],
[role="link"],
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="range"],
input[type="color"],
select,
label[for],
summary,
[data-bs-toggle],
[data-bs-dismiss],
.btn,
.nav-link,
.dropdown-item,
.close,
.clickable {
    cursor: pointer;
}

/* Disabled elements should show not-allowed */
button:disabled,
input:disabled,
select:disabled,
[aria-disabled="true"],
.disabled {
    cursor: not-allowed;
}
