/* =================================
   Custom Scrollbar - Light Grey
   ================================= */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #020617; /* dark background */
}

::-webkit-scrollbar-thumb {
    background: #d1d5db; /* light grey */
    border-radius: 8px;
    border: 2px solid #020617;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #e5e7eb; /* brighter grey */
}

::-webkit-scrollbar-thumb:active {
    background: #f3f4f6;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #d1d5db #020617;
}