/* Tailwind/Lightning 번들 밖에서 로드 — `npm run dev`에서도 스크롤바 스타일 유지 */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #34d399;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #059669;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #34d399 transparent;
}
