
        @tailwind base;
        @tailwind components;
        @tailwind utilities;

        .gradient-bar {
            @apply h-1.5 bg-gradient-to-r from-[#032058] via-[#165DFF] to-[#021739] rounded-full;
        }
        
        .card-hover {
            @apply transition-all duration-300 hover:shadow-lg hover:-translate-y-1;
        }

        .stat-card {
            @apply bg-white rounded-xl shadow-sm p-5 text-center;
        }

        .stat-value {
            @apply text-2xl font-bold text-[#032058];
        }

        .stat-label {
            @apply text-[#66758F] text-sm mt-1;
        }
    