/* Custom styles to complement Tailwind */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Smooth transitions */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Table row hover effect */
#tableBody tr {
    transition: background-color 0.2s ease;
}

#tableBody tr:hover {
    background-color: #f9fafb;
}

/* Equipment type colors */
.equipment-excavator {
    border-left: 4px solid #3b82f6; /* Blue */
}

.equipment-loader {
    border-left: 4px solid #10b981; /* Green */
}

.equipment-truck {
    border-left: 4px solid #f59e0b; /* Amber */
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}