/* 
   CRM Aesthetic Redesign - Custom Styles
   Most styles are now handled by Tailwind CSS classes in index.htm.
   This file is reserved for complex animations or specific overrides 
   that are cumbersome to do with utility classes alone.
*/

/* Example: Custom scrollbar for Webkit */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #444;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #666;
}