a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

/* 
 * 전역 스크롤바 커스텀 (6px) 
 * 중요: 이 CSS는 public/index.html에서 직접 로드되므로 React 스크립트보다 먼저 평가됩니다.
 * 이렇게 해야 rc-table이 초기 로딩 시 scrollbarSize를 6px로 정확하게 계산하고 
 * 헤더 스페이서와 바디 스크롤바의 너비 불일치를 방지할 수 있습니다.
 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

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

/* Firefox 용 얇은 스크롤바 */
* {
    scrollbar-width: thin;
    scrollbar-color: #d8dee6 transparent;
}