/* Voxy AI - Ultra Modern Dashboard */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Dark Cyber Theme */
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-tertiary: #1a1a1a;
  --bg-glass: rgba(255, 255, 255, 0.05);
  
  /* Neon Colors */
  --neon-blue: #00f5ff;
  --neon-green: #39ff14;
  --neon-purple: #bf00ff;
  --neon-orange: #ff9500;
  --neon-pink: #ff0080;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-neon: linear-gradient(135deg, #00f5ff 0%, #bf00ff 100%);
  
  /* Effects */
  --glow-blue: 0 0 20px rgba(0, 245, 255, 0.5);
  --glow-green: 0 0 20px rgba(57, 255, 20, 0.5);
  --glow-purple: 0 0 20px rgba(191, 0, 255, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animated Tech Background */
.tech-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 20% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(191, 0, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 60%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 245, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.floating-particles::before,
.floating-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-blue);
  border-radius: 50%;
  box-shadow: var(--glow-blue);
  animation: float 6s ease-in-out infinite;
}

.floating-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 60%;
  left: 80%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-40px) translateX(-5px); }
  75% { transform: translateY(-20px) translateX(-10px); }
}

/* Dashboard Container */
.dashboard-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 0;
}

/* Modern Header */
.dashboard-header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.brand-section .logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-neon);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-blue);
  animation: logoPulse 3s ease-in-out infinite;
}

.logo-icon i {
  font-size: 24px;
  color: white;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); box-shadow: var(--glow-blue); }
  50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 245, 255, 0.8); }
}

.brand-text h1 {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.brand-text .tagline {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* System Metrics */
.system-metrics {
  display: flex;
  gap: 1.5rem;
  margin-right: 2rem;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  color: var(--text-secondary);
}

.metric-bar {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.cpu-usage {
  width: 34%;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
}

.ram-usage {
  width: 62%;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

/* Status Indicator */
.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-pulse {
  width: 12px;
  height: 12px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: var(--glow-green);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.status-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.metric-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.metric-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-neon);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.metric-status {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.live-indicator {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.metric-content {
  margin-bottom: 1.5rem;
}

.metric-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.metric-trend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 12px;
  font-weight: 500;
}

.metric-trend.positive {
  color: var(--neon-green);
}

.metric-trend i {
  font-size: 10px;
}

/* Chart Visualizations */
.metric-chart {
  height: 40px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 100%;
  width: 100%;
}

.bar {
  flex: 1;
  background: var(--gradient-neon);
  border-radius: 2px;
  min-height: 4px;
  animation: barGrow 1s ease-out;
}

@keyframes barGrow {
  from { height: 0; }
  to { height: var(--height); }
}

.progress-ring {
  position: relative;
  width: 80px;
  height: 80px;
}

.progress-ring-svg {
  transform: rotate(-90deg);
}

.progress-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 4;
}

.progress-ring-fill {
  fill: none;
  stroke: var(--neon-blue);
  stroke-width: 4;
  stroke-dasharray: 188;
  stroke-dashoffset: 47;
  animation: progressFill 2s ease-out;
}

@keyframes progressFill {
  from { stroke-dashoffset: 188; }
  to { stroke-dashoffset: 47; }
}

.progress-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 700;
  color: var(--neon-blue);
}

.wave-chart {
  height: 40px;
  width: 100%;
}

.wave-svg {
  width: 100%;
  height: 100%;
}

.wave-svg path {
  animation: waveFlow 3s ease-in-out infinite;
}

@keyframes waveFlow {
  0%, 100% { d: path("M0,10 Q25,5 50,10 T100,10"); }
  50% { d: path("M0,10 Q25,15 50,10 T100,10"); }
}

.gauge-chart {
  position: relative;
  width: 60px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 60px 60px 0 0;
  overflow: hidden;
}

.gauge-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-neon);
  transform-origin: bottom center;
  transition: transform 1s ease;
}

.gauge-center {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--text-primary);
  border-radius: 50%;
}

/* Activity Dashboard */
.activity-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  padding: 0 2rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.ai-brain-panel {
  grid-column: span 2;
}

.activity-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.activity-panel:hover {
  border-color: var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.panel-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.panel-title i {
  font-size: 18px;
  color: var(--neon-blue);
}

.panel-controls {
  display: flex;
  gap: 0.5rem;
}

.control-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover,
.control-btn.active {
  background: var(--gradient-neon);
  color: white;
  border-color: transparent;
}

.panel-content {
  padding: 2rem;
}

/* Radar Scanner */
.radar-scan {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 2rem auto;
}

.radar-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0, 245, 255, 0.3);
  border-radius: 50%;
}

.radar-circle::before,
.radar-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 50%;
}

.radar-circle::before {
  width: 66%;
  height: 66%;
}

.radar-circle::after {
  width: 33%;
  height: 33%;
}

.radar-sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 245, 255, 0.3) 30deg, transparent 60deg);
  border-radius: 50%;
  animation: radarSweep 3s linear infinite;
}

@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--neon-blue);
  border-radius: 50%;
  box-shadow: var(--glow-blue);
}

/* Neural Network */
.neural-network {
  position: relative;
  height: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}

.neural-layer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.neuron {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.neuron.active {
  background: var(--neon-blue);
  border-color: var(--neon-blue);
  box-shadow: var(--glow-blue);
  animation: neuronPulse 2s ease-in-out infinite;
}

@keyframes neuronPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.neural-pulse {
  width: 12px;
  height: 12px;
  background: var(--neon-purple);
  border-radius: 50%;
  box-shadow: var(--glow-purple);
  animation: statusPulse 2s ease-in-out infinite;
}

.ai-metrics {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}

.ai-metric {
  text-align: center;
}

.ai-metric .metric-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.ai-metric .metric-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--neon-blue);
}

/* Command Center */
.command-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.command-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.command-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.command-panel:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.command-panel:hover::before {
  opacity: 1;
}

.command-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.command-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-neon);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.command-title h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: var(--text-primary);
}

.command-title p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.command-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-item .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--neon-blue);
}

.command-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--gradient-neon);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.command-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
  color: white;
  text-decoration: none;
}

.command-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.command-btn.secondary:hover {
  background: var(--gradient-neon);
  border-color: transparent;
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-text {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 1rem;
}

.hologram-effect {
  font-size: 48px;
  color: var(--neon-blue);
  margin-bottom: 1rem;
  animation: hologramFlicker 3s ease-in-out infinite;
}

@keyframes hologramFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
  25%, 75% { opacity: 0.9; }
}

/* Time Filter */
.time-filter {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 4px;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-neon);
  color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .activity-dashboard {
    grid-template-columns: 1fr;
  }
  
  .ai-brain-panel {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .dashboard-header {
    padding: 1rem;
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .system-metrics {
    margin-right: 0;
  }
  
  .metrics-grid,
  .activity-dashboard,
  .command-center {
    padding: 1rem;
    grid-template-columns: 1fr;
  }
  
  .metric-card,
  .activity-panel,
  .command-panel {
    padding: 1.5rem;
  }
  
  .metric-number {
    font-size: 2.5rem;
  }
  
  .brand-text h1 {
    font-size: 24px;
  }
  
  .neural-network {
    height: 150px;
  }
  
  .radar-scan {
    width: 150px;
    height: 150px;
  }
}

/* Additional Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.metric-card,
.activity-panel,
.command-panel {
  animation: fadeInUp 0.6s ease-out;
}

.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }
.metric-card:nth-child(4) { animation-delay: 0.4s; }

/* Global Table Styling - Cyberpunk Theme */
table {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.1);
}

table thead {
  background: rgba(0, 245, 255, 0.15);
  border-bottom: 2px solid rgba(0, 245, 255, 0.3);
}

table th {
  padding: 1rem 1.5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon-blue);
  text-transform: uppercase;
  border: none;
  background: transparent;
  text-align: left;
}

table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

table tbody tr:hover {
  background: rgba(0, 245, 255, 0.05);
  border-left: 3px solid var(--neon-blue);
  transform: translateX(3px);
}

table tbody tr:last-child {
  border-bottom: none;
}

table td {
  padding: 1rem 1.5rem;
  font-size: 13px;
  color: var(--text-primary);
  border: none;
  background: transparent;
  vertical-align: middle;
}

table td:first-child {
  font-family: 'Courier New', monospace;
  color: var(--neon-green);
  font-weight: 600;
}

/* Empty state for tables */
table tbody tr.empty-row td {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-style: italic;
  background: rgba(0, 0, 0, 0.1);
}

table tbody tr.empty-row:hover {
  background: rgba(0, 0, 0, 0.1);
  border-left: none;
  transform: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-neon);
}

/* Call History Futuristic Styles */
.call-history-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.call-history-header {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 0.8fr 1fr 1fr 0.8fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 245, 255, 0.1);
  border-bottom: 1px solid rgba(0, 245, 255, 0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon-blue);
  text-transform: uppercase;
}

.call-col {
  text-align: left;
}

.call-history-body {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-blue) rgba(0, 0, 0, 0.2);
}

.call-history-body::-webkit-scrollbar {
  width: 4px;
}

.call-history-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.call-history-body::-webkit-scrollbar-thumb {
  background: var(--neon-blue);
  border-radius: 2px;
}

.call-entry {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 0.8fr 1fr 1fr 0.8fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.call-entry:hover {
  background: rgba(0, 245, 255, 0.05);
  border-left: 3px solid var(--neon-blue);
  padding-left: calc(1.5rem - 3px);
}

.call-entry:last-child {
  border-bottom: none;
}

.call-data {
  font-size: 13px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.call-timestamp {
  font-family: 'Courier New', monospace;
  color: var(--neon-green);
  font-weight: 600;
}

.call-number {
  font-family: 'Courier New', monospace;
  color: var(--text-primary);
}

.call-duration {
  color: var(--text-secondary);
  font-weight: 500;
}

.call-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.call-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.call-status.success {
  background: rgba(57, 255, 20, 0.2);
  color: var(--neon-green);
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.call-status.pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.call-status.failed {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.call-status.active {
  background: rgba(0, 245, 255, 0.2);
  color: var(--neon-blue);
  border: 1px solid rgba(0, 245, 255, 0.3);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 245, 255, 0.5); }
  50% { box-shadow: 0 0 15px rgba(0, 245, 255, 0.8); }
}

.call-message-count {
  background: rgba(57, 255, 20, 0.1);
  color: var(--neon-green);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(57, 255, 20, 0.3);
}

/* No Data State */
.call-entry.no-data {
  grid-template-columns: 1fr;
  padding: 3rem;
  justify-items: center;
  border: none;
}

.no-data-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  position: relative;
}

.no-data-content i {
  font-size: 3rem;
  color: rgba(0, 245, 255, 0.3);
  margin-bottom: 0.5rem;
}

.no-data-content span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 1px;
}

.scanning-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--neon-blue) 50%, 
    transparent 100%);
  animation: scanning 2s infinite ease-in-out;
  margin-top: 1rem;
}

@keyframes scanning {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* Call History Responsive Design */
@media (max-width: 1200px) {
  .call-history-header,
  .call-entry:not(.no-data) {
    grid-template-columns: 1fr 1fr 0.8fr 1fr;
  }
  
  .call-col:nth-child(5),
  .call-entry:not(.no-data) > *:nth-child(5),
  .call-col:nth-child(6),
  .call-entry:not(.no-data) > *:nth-child(6) {
    display: none;
  }
}

@media (max-width: 768px) {
  .call-history-header,
  .call-entry:not(.no-data) {
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
  }
  
  .call-col:nth-child(n+3),
  .call-entry:not(.no-data) > *:nth-child(n+3) {
    display: none;
  }
  
  .scanning-line {
    width: 150px;
  }
}
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-blue);
}