/* Custom styles for RecruitCompare */
/* Supplement Tailwind with any custom CSS needed */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Table striping on hover */
table tbody tr:hover {
    background-color: #f9fafb;
}

/* Card hover lift effect */
.hover\:shadow-md:hover {
    transform: translateY(-1px);
}

/* Rating bar animation */
.bg-green-500, .bg-blue-500 {
    transition: width 0.6s ease-out;
}

/* Print styles */
@media print {
    nav, footer, .no-print {
        display: none !important;
    }
}
