/* 전역 스크롤바 스타일 */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 163, 175, 0.5) transparent;
}

/* Webkit 브라우저 (Chrome, Safari, Edge) 스크롤바 스타일 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

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

::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.5);
  border-radius: 3px;
  transition: background-color 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(156, 163, 175, 0.7);
}

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

/* 다크 모드에서 스크롤바 색상 조정 */
@media (prefers-color-scheme: dark) {
  * {
    scrollbar-color: rgba(75, 85, 99, 0.5) transparent;
  }

  ::-webkit-scrollbar-thumb {
    background-color: rgba(75, 85, 99, 0.5);
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: rgba(75, 85, 99, 0.7);
  }
}

/* Chakra UI 다크 모드 대응 */
[data-theme="dark"] * {
  scrollbar-color: rgba(75, 85, 99, 0.5) transparent;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background-color: rgba(75, 85, 99, 0.5);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(75, 85, 99, 0.7);
}
