/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #ceedf1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #ceedf1;
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #001fff;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #ceedf1 rgba(255, 255, 255, 0.05);
}