/* PKBM SaaS Custom Styles & Component Utilities */
:root {
  --primary-color: #0284c7;
  --primary-hover: #0369a1;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Transitions */
.transition-smooth {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active Nav Links */
.nav-link-active {
  color: #0284c7 !important;
  font-weight: 600;
  border-bottom: 2px solid #0284c7;
}

/* Mobile Touch Tap Highlight */
* {
  -webkit-tap-highlight-color: transparent;
}
