/* Points Africa HCM — global overrides & fine-tuning on top of Tailwind CDN */

html, body {
  -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar for a more polished feel */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9CA3AF;
}

/* Smooth transitions for interactive elements already using Tailwind's transition utilities */
a, button {
  -webkit-tap-highlight-color: transparent;
}

/* Table row hover niceties are handled via Tailwind classes in markup */
