
    @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;
    }
    
    .spec-table th {
        @apply bg-[#032058] text-white py-3.5 px-4 text-left text-base font-semibold uppercase tracking-wider;
    }
    
    .spec-table td {
        @apply py-3.5 px-4 text-base border-b border-[#D0E0F2];
    }
    
    .spec-table tr:nth-child(even) {
        @apply bg-neutral-50;
    }
