/* css/style.css */
body {
    font-family: 'Source Sans Pro', sans-serif;
}

/* Custom scrollbar for dark theme - Webkit */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a; /* Dark gray for the track */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #4a4a4a; /* Medium gray for the thumb */
    border-radius: 10px;
    border: 3px solid #1a1a1a; /* Padding around the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #6a6a6a; /* Lighter gray on hover */
}

/* Ensure focus rings are visible */
*:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); /* Blue-500 with opacity */
}
/* You can also use Tailwind's focus:ring-2 focus:ring-blue-500 directly on elements */
