/* 공통 스크롤바 스타일 */
html {
  scrollbar-width: thin;
  scrollbar-color: #3222e6 rgba(0, 0, 0, 0.1);
}

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

*::-webkit-scrollbar-thumb {
  background-color: #3222e6;
  border-radius: 10px;
}

*::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
