/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Tab active class highlight */
.nav-tab.active {
  background-color: #1e293b;
  color: #22c55e;
  border: 1px solid #334155;
}

/* Custom pulse animations for live status */
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.4; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.live-pulse {
  animation: pulse-ring 2s infinite ease-in-out;
}
