﻿/* Prevent layout shift when scrollbar appears */
body {
    scrollbar-gutter: stable;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 3px !important;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #0cb1ed;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #0899d1;
    }

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #0cb1ed transparent;
}
