﻿/* Most styles are handled by Tailwind. 
   These are specific overrides for ASP.NET controls that are hard to style directly via classes 
*/

/* Ensure GridView Table fills container */
.table-auto {
    width: 100%;
}

/* Animations for Modals */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-animate {
    animation: fadeIn 0.3s ease-out;
}

/* Status Badge Helper Classes */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-available {
    background-color: #dcfce7;
    color: #166534;
}

.badge-inuse {
    background-color: #ffedd5;
    color: #9a3412;
}

.badge-maintenance {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-disabled {
    background-color: #f3f4f6;
    color: #374151;
}
