/* Webkit Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a; /* Matches body background */
}

::-webkit-scrollbar-thumb {
    background: #475569; /* Slate 600 */
    border-radius: 5px;
    border: 2px solid #0f172a; /* Creates padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background: #3b82f6; /* Blue on hover */
}