/* Order Hub - minimal custom styles */

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* Hover effect for action icons */
.action-icon:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  transition: transform 0.1s, filter 0.1s;
}
