/* Custom NOC Theme Styles */
:root {
  --bg-main: #0b0f19;
  --bg-card: #111827;
  --bg-card-hover: #1f2937;
  --border-color: #1e293b;
  --accent-cyan: #06b6d4;
  --accent-blue: #3b82f6;
  --accent-green: #10b981;
  --accent-yellow: #f59e0b;
  --accent-red: #ef4444;
}

body {
  background-color: var(--bg-main);
  color: #e2e8f0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Glowing Elements */
.glow-cyan {
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.25);
}
.glow-green {
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}
.glow-red {
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.25);
}

/* Glassmorphism Card */
.glass-panel {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Topo Node Visualizer */
.topo-node {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.topo-node:hover {
  transform: translateY(-3px);
}

/* Animated Pulse Dot */
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 0.3; }
  100% { transform: scale(0.95); opacity: 0.8; }
}
.pulse-indicator {
  animation: pulse-ring 2s infinite ease-in-out;
}

/* Monospace text for logs and code */
.font-mono-code {
  font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
