/* Bole Card — shared UI defaults */

/* Prevent mobile tap flash + keep interactions crisp */
*,
*::before,
*::after {
  -webkit-tap-highlight-color: transparent;
}

/* Remove default focus rings (we rely on custom styling in-app) */
*:focus,
*:focus-visible {
  outline: none !important;
}

/* Remove iOS button/input styling quirks */
button,
input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}

/* Prevent accidental text selection on tap targets */
button,
a,
.nav-item,
.act,
.back-btn {
  -webkit-user-select: none;
  user-select: none;
}

/* Cursor hints */
button,
a {
  cursor: pointer;
}

