/* 모든 요소에 대해 탭 하이라이트 제거 */
* {
    -webkit-tap-highlight-color: transparent;
}

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

::-webkit-scrollbar-track {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb {
    background-color: #CADABC !important;
    border-radius: 18px !important;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #CADABC !important;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #CADABC transparent; /* thumb, track */
}