@tailwind base;
@tailwind components;
@tailwind utilities;

/* Broadcast update highlight animation */
@keyframes highlight-fade {
  0% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.5); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.animate-highlight {
  animation: highlight-fade 1.5s ease-out;
}

/* Product bulk selection mode */
[data-select-mode="true"] .product-select-actions { display: flex !important; }
[data-select-mode="true"] .product-select-checkbox { display: block !important; }
[data-select-mode="true"] .product-select-enter { display: none !important; }

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
