/* Operator dashboard overrides */

/* Scrollbar styling */
.overflow-y-auto::-webkit-scrollbar { width: 4px; }
.overflow-y-auto::-webkit-scrollbar-track { background: transparent; }
.overflow-y-auto::-webkit-scrollbar-thumb { background: #334155; border-radius: 2px; }
.overflow-y-auto::-webkit-scrollbar-thumb:hover { background: #475569; }

/* Live indicator pulse */
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.animate-pulse { animation: live-pulse 2s ease-in-out infinite; }

/* Panel hover */
.hover\\:bg-slate-700\\/20:hover { background-color: rgba(51, 65, 85, 0.2); }

/* Status badge pill */
.badge { display: inline-flex; align-items: center; padding: 0.125rem 0.5rem; border-radius: 9999px; font-size: 0.6875rem; font-weight: 500; }