/*
Theme Name: Client Tracking Portal
Description: A highly secure, minimal, and professional portal theme for managing client records, multi-step authentications, and tracking interactions.
Author: Theme Architect
Version: 1.0.0
Text Domain: client-tracking-portal
*/

/* Custom animations supplementing Tailwind CSS */
.fade-in { 
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

@keyframes fadeIn { 
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

/* Custom Scrollbar for modals and tables */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}