/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
    background: #D32F2F;
    /* Red */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD600;
    /* Yellow */
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: #FFD600;
    color: #D32F2F;
}