
/* Custom Scrollbar for Sci-Fi aesthetic */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #030712; 
    border-left: 1px solid #1f2937;
}
::-webkit-scrollbar-thumb {
    background: #0891b2; 
}
::-webkit-scrollbar-thumb:hover {
    background: #06b6d4; 
}
body {
    scrollbar-width: thin;
    scrollbar-color: #0891b2 #030712;
}
