/* Dashboard specific styles */
.stats-grid {
    animation: fadeIn 0.5s ease;
}

.section {
    animation: slideUp 0.6s ease;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Status badges (reused) */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.status-instock { background: #ecfdf5; color: #10B981; }
.status-transit { background: #eff6ff; color: #3b82f6; }
.status-deployed { background: #faf5ff; color: #a855f7; }
.status-faulty { background: #fef2f2; color: #EF4444; }
.status-reserved { background: #fffbeb; color: #F59E0B; }

/* Location tag */
.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Skeleton animation */
.loading-skeleton {
    background: linear-gradient(90deg, var(--surface-hover) 25%, var(--bg) 50%, var(--surface-hover) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
