/* Equipment Tracker custom styles */

.status-badge-active { background-color: #198754; }
.status-badge-inactive { background-color: #6c757d; }
.status-badge-maintenance { background-color: #ffc107; color: #000; }
.status-badge-retired { background-color: #dc3545; }

.card-stat {
    transition: transform 0.15s ease;
}
.card-stat:hover {
    transform: translateY(-2px);
}

.table th {
    white-space: nowrap;
}

/* Sortable table headers */
.sortable-header a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.sortable-header a:hover {
    color: #0d6efd !important;
}

/* Checkout status badges */
.status-badge-open { background-color: #0d6efd; }
.status-badge-partial { background-color: #ffc107; color: #000; }
.status-badge-closed { background-color: #198754; }

.low-stock-row { background-color: #fff3cd; }

/* Photo carousel */
#photoCarousel .carousel-item img {
    background: #f8f9fa;
}

/* Responsive: mobile adjustments */
@media (max-width: 767.98px) {
    /* Compact card stat grid on small screens */
    .card-stat {
        margin-bottom: 0.5rem;
    }

    /* Smaller headings on mobile */
    h2 {
        font-size: 1.4rem;
    }
}
