
/* KreatorAI.id Global Styles */
@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  @apply bg-[#fcfdfe] text-[#0f172a] antialiased scroll-smooth;
}

#root {
  min-height: 100vh;
}

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