/* Custom CSS Overrides and Helpers */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #1E4382;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #163364;
}

/* Custom Selection Color */
::selection {
    background-color: #F26522;
    color: #ffffff;
}