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

li {
    list-style: none;
}

/*
 * 전역 스크롤바 — 폭은 브라우저 thin/기본에 맡기고, thumb·track 색만 통일
 */
::-webkit-scrollbar-thumb {
    background: #d8dee6;
    border-radius: 10px;
}

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

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