/* Custom scrollbar — subtle blue to match site palette */
html {
    scrollbar-width: thin;
    scrollbar-color: #c2d9f5 #f4f8ff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f4f8ff;
}

::-webkit-scrollbar-thumb {
    background: #c2d9f5;
    border-radius: 4px;
    border: 2px solid #f4f8ff;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8c8ef;
}
