/* Custom overrides if needed over Tailwind */
.nav-link.active {
    color: #ea580c; /* orange-600 */
    border-bottom-color: #ea580c;
}

/* Smooth transitions */
.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Table scrollbar refinement */
.overflow-x-auto::-webkit-scrollbar {
    height: 8px;
}
.overflow-x-auto::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.overflow-x-auto::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
.overflow-x-auto::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}
