@charset "utf-8";

/* 전역 스크롤바 디자인 시작 */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

/* 스크롤바 트랙 - 완전히 투명하게 */
::-webkit-scrollbar-track {
    background: transparent;
}

/* 스크롤바 썸 (스크롤 손잡이) */
::-webkit-scrollbar-thumb {
    background-color: rgba(150, 150, 150, 0.4);  /* 연한 회색 + 투명도 */
    border-radius: 8px;                         /* 부드러운 라운드 */
    border: 2px solid transparent;              /* 테두리로 여백 확보 */
    background-clip: padding-box;               /* 안쪽만 칠하기 */
    transition: background-color 0.2s;
}

/* 호버 시 더 선명한 회색 */
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(120, 120, 120, 0.6);
}
/* 전역 스크롤바 디자인 끝 */
