/* Custom Scrollbar for Webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a; 
}

::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #06b6d4; 
}

/* Base styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Text Selection Color */
::selection {
    background-color: rgba(6, 182, 212, 0.3);
    color: white;
}
