/* Custom scrollbar styling for high-end SaaS feel */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #09090b;
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #facc15;
}

/* Yellow neon outline focus glow */
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.15);
}