/* Custom styles for Vehicle Management System */

/* Any additional custom styling beyond Tailwind would go here */

.flash-message {
    animation: fadeOut 5s forwards;
    animation-delay: 3s;
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}

/* Fix for Working Hours Settings button */
a[href*="workingHoursSettings"] {
    background-color: #f97316 !important; /* orange-500 */
    color: white !important;
}

a[href*="workingHoursSettings"]:hover {
    background-color: #ea580c !important; /* orange-600 */
} 