/* ==========================================================================
   NetworkPulse Voice-First Quick Capture Stylesheet
   ========================================================================== */

.voice-capture-modal {
  max-width: 650px;
}

.voice-status-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  border-radius: var(--radius-md);
  padding: 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.voice-wave-container {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  margin: 16px 0;
}

.voice-wave-bar {
  width: 5px;
  height: 12px;
  background-color: #60a5fa;
  border-radius: var(--radius-full);
  transition: height 100ms ease;
}

.voice-status-box.recording .voice-wave-bar:nth-child(1) { animation: wavePulse 0.8s infinite ease-in-out 0.1s; }
.voice-status-box.recording .voice-wave-bar:nth-child(2) { animation: wavePulse 0.8s infinite ease-in-out 0.2s; }
.voice-status-box.recording .voice-wave-bar:nth-child(3) { animation: wavePulse 0.8s infinite ease-in-out 0.3s; }
.voice-status-box.recording .voice-wave-bar:nth-child(4) { animation: wavePulse 0.8s infinite ease-in-out 0.4s; }
.voice-status-box.recording .voice-wave-bar:nth-child(5) { animation: wavePulse 0.8s infinite ease-in-out 0.2s; }
.voice-status-box.recording .voice-wave-bar:nth-child(6) { animation: wavePulse 0.8s infinite ease-in-out 0.5s; }
.voice-status-box.recording .voice-wave-bar:nth-child(7) { animation: wavePulse 0.8s infinite ease-in-out 0.1s; }

@keyframes wavePulse {
  0%, 100% { height: 8px; background-color: #60a5fa; }
  50% { height: 42px; background-color: #38bdf8; }
}

.voice-mic-orb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background-color: #2563eb;
  border: 4px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
  transition: all var(--transition-fast);
}

.voice-status-box.recording .voice-mic-orb {
  background-color: #dc2626;
  box-shadow: 0 0 25px rgba(220, 38, 38, 0.7);
  animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.voice-transcript-area {
  margin-top: 14px;
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
  min-height: 44px;
  max-width: 90%;
}

.voice-quick-examples {
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 8px;
}

/* AI Structuring Confirmation Sheet */
.ai-extracted-box {
  background-color: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.ai-pill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.match-alert-badge {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
