/* /Components/Controls/AudioLevelMeter.razor.rz.scp.css */
.audio-level-meter[b-j3ijjd14o6] {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.meter-header[b-j3ijjd14o6] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.meter-header h4[b-j3ijjd14o6] {
  margin: 0;
  font-size: 1rem;
  color: #2d3436;
}

.current-level[b-j3ijjd14o6] {
  font-size: 1.1rem;
  font-weight: bold;
  color: #0984e3;
  font-family: "Courier New", monospace;
}

.meter-container[b-j3ijjd14o6] {
  position: relative;
  height: 60px;
  background: #ecf0f1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.meter-bar[b-j3ijjd14o6] {
  height: 100%;
  background: linear-gradient(to right, #55efc4 0%, #00b894 20%, #ffeaa7 50%, #fdcb6e 70%, #ff7675 90%, #d63031 100%);
  transition: width 0.05s linear;
  border-radius: 8px;
  position: relative;
}

.meter-bar.clipping[b-j3ijjd14o6] {
  animation: clipBlink-b-j3ijjd14o6 0.3s ease-in-out infinite;
}

.threshold-markers[b-j3ijjd14o6] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.threshold-marker[b-j3ijjd14o6] {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  z-index: 2;
}

.threshold-marker.start[b-j3ijjd14o6] {
  background: #00b894;
  box-shadow: 0 0 8px rgba(0, 184, 148, 0.6);
}

.threshold-marker.stop[b-j3ijjd14o6] {
  background: #d63031;
  box-shadow: 0 0 8px rgba(214, 48, 49, 0.6);
}

.threshold-label[b-j3ijjd14o6] {
  position: absolute;
  top: -24px;
  font-size: 0.75rem;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  transform: translateX(-50%);
}

.meter-scale[b-j3ijjd14o6] {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #636e72;
  font-family: "Courier New", monospace;
}

.clipping-indicator[b-j3ijjd14o6] {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: #d63031;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  animation: clipBlink-b-j3ijjd14o6 0.5s ease-in-out infinite;
}

@keyframes clipBlink-b-j3ijjd14o6 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
/* /Components/Controls/CalibrationPanel.razor.rz.scp.css */
.calibration-panel[b-ayedy8u8al] {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
}

.calibration-logo[b-ayedy8u8al] {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.3;
}

.calibration-countdown[b-ayedy8u8al] {
  text-align: center;
}

.calibration-countdown h3[b-ayedy8u8al] {
  margin: 0 0 1.5rem 0;
  font-size: 1.3rem;
  color: #2d3436;
}

.calibration-countdown p[b-ayedy8u8al] {
  margin: 1rem 0 0 0;
  color: #636e72;
  font-size: 0.95rem;
}

.countdown-display[b-ayedy8u8al] {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 1rem 0;
  animation: countdownPulse-b-ayedy8u8al 1s ease-in-out infinite;
}

.countdown-timer[b-ayedy8u8al] {
  font-size: 4rem;
  font-weight: bold;
  color: #0984e3;
  line-height: 1;
}

.countdown-label[b-ayedy8u8al] {
  font-size: 1rem;
  color: #636e72;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calibration-header[b-ayedy8u8al] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calibration-header h3[b-ayedy8u8al] {
  margin: 0;
  font-size: 1.2rem;
  color: #2d3436;
}

.countdown[b-ayedy8u8al] {
  font-size: 2rem;
  font-weight: bold;
  color: #0984e3;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 8px;
  margin: 1rem 0;
  animation: countdownPulse-b-ayedy8u8al 1s ease-in-out infinite;
}

.warnings[b-ayedy8u8al] {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 4px;
}

.warning-item[b-ayedy8u8al] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #856404;
  margin-bottom: 0.5rem;
}

.warning-item:last-child[b-ayedy8u8al] {
  margin-bottom: 0;
}

.warning-item[b-ayedy8u8al]::before {
  content: "⚠️";
  font-size: 1.2rem;
}

.calibration-actions[b-ayedy8u8al] {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-calibrate[b-ayedy8u8al],
.btn-recalibrate[b-ayedy8u8al] {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-calibrate[b-ayedy8u8al] {
  background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
  color: white;
}

.btn-calibrate:hover[b-ayedy8u8al] {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(9, 132, 227, 0.3);
}

.btn-calibrate:active[b-ayedy8u8al] {
  transform: translateY(0);
}

.btn-recalibrate[b-ayedy8u8al] {
  background: linear-gradient(135deg, #fdcb6e 0%, #ffeaa7 100%);
  color: #2d3436;
}

.btn-recalibrate:hover[b-ayedy8u8al] {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 203, 110, 0.3);
}

.btn-recalibrate:active[b-ayedy8u8al] {
  transform: translateY(0);
}

.btn-calibrate:disabled[b-ayedy8u8al],
.btn-recalibrate:disabled[b-ayedy8u8al] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

@keyframes countdownPulse-b-ayedy8u8al {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
/* /Components/Controls/ConfigurationPanel.razor.rz.scp.css */
.configuration-panel[b-iqh3jzeh6g] {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.configuration-panel h3[b-iqh3jzeh6g] {
  margin: 0 0 1.5rem 0;
  font-size: 1.2rem;
  color: #2d3436;
}

.config-item[b-iqh3jzeh6g] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.config-item:last-child[b-iqh3jzeh6g] {
  margin-bottom: 0;
}

.config-item:hover[b-iqh3jzeh6g] {
  background: #e9ecef;
  transform: translateX(4px);
}

.config-item label[b-iqh3jzeh6g] {
  font-weight: 500;
  color: #2d3436;
  margin: 0;
}

.config-item input[type="number"][b-iqh3jzeh6g] {
  width: 80px;
  padding: 0.5rem 0.75rem;
  border: 2px solid #dfe6e9;
  border-radius: 4px;
  font-size: 1rem;
  text-align: center;
  transition: all 0.2s ease;
}

.config-item input[type="number"]:focus[b-iqh3jzeh6g] {
  outline: none;
  border-color: #0984e3;
  box-shadow: 0 0 0 3px rgba(9, 132, 227, 0.1);
}

.config-item input[type="number"]:hover[b-iqh3jzeh6g] {
  border-color: #74b9ff;
}

/* Remove spinner buttons in Chrome, Safari, Edge */
.config-item input[type="number"][b-iqh3jzeh6g]::-webkit-outer-spin-button,
.config-item input[type="number"][b-iqh3jzeh6g]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove spinner buttons in Firefox */
.config-item input[type="number"][b-iqh3jzeh6g] {
  -moz-appearance: textfield;
}

.config-grid[b-iqh3jzeh6g] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
/* /Components/Controls/RecordingStatus.razor.rz.scp.css */
.recording-status[b-qe6ldbxv83] {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.recording-status.pending[b-qe6ldbxv83] {
  background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
  border-left: 4px solid #fdcb6e;
}

.recording-status.denied[b-qe6ldbxv83] {
  background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
  border-left: 4px solid #d63031;
  color: white;
}

.recording-status.calibrating[b-qe6ldbxv83] {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  border-left: 4px solid #0984e3;
  animation: pulse-b-qe6ldbxv83 1.5s ease-in-out infinite;
}

.recording-status.listening[b-qe6ldbxv83] {
  background: linear-gradient(135deg, #55efc4 0%, #00b894 100%);
  border-left: 4px solid #00b894;
}

.recording-status.recording[b-qe6ldbxv83] {
  background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
  border-left: 4px solid #d63031;
  animation: recordingPulse-b-qe6ldbxv83 0.8s ease-in-out infinite;
}

.recording-status.playback[b-qe6ldbxv83] {
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
  border-left: 4px solid #6c5ce7;
}

.status-icon[b-qe6ldbxv83] {
  font-size: 2rem;
  line-height: 1;
}

.status-text[b-qe6ldbxv83] {
  font-size: 1.1rem;
  font-weight: 500;
  flex: 1;
}

.max-length-info[b-qe6ldbxv83] {
  font-size: 0.9rem;
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

@keyframes pulse-b-qe6ldbxv83 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes recordingPulse-b-qe6ldbxv83 {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 2px 16px rgba(214, 48, 49, 0.4);
  }
}
/* /Components/Controls/SensitivityControl.razor.rz.scp.css */
.sensitivity-control[b-8zvbxzfxwy] {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.sensitivity-description[b-8zvbxzfxwy] {
  font-size: 0.875rem;
  color: #636e72;
  margin: 0.5rem 0 1rem 0;
  line-height: 1.4;
}

.sensitivity-header[b-8zvbxzfxwy] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.sensitivity-header label[b-8zvbxzfxwy] {
  font-weight: 500;
  color: #2d3436;
}

.sensitivity-value[b-8zvbxzfxwy] {
  font-size: 1.1rem;
  font-weight: bold;
  color: #0984e3;
  background: #e3f2fd;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.slider-container[b-8zvbxzfxwy] {
  position: relative;
  padding: 0.5rem 0;
}

input[type="range"][b-8zvbxzfxwy] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #55efc4 0%, #ffeaa7 50%, #ff7675 100%);
  outline: none;
  -webkit-appearance: none;
  transition: all 0.2s ease;
}

input[type="range"][b-8zvbxzfxwy]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 3px solid #0984e3;
  transition: all 0.2s ease;
}

input[type="range"][b-8zvbxzfxwy]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(9, 132, 227, 0.4);
}

input[type="range"][b-8zvbxzfxwy]::-webkit-slider-thumb:active {
  transform: scale(1.1);
  background: #0984e3;
}

input[type="range"][b-8zvbxzfxwy]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 3px solid #0984e3;
  transition: all 0.2s ease;
}

input[type="range"][b-8zvbxzfxwy]::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(9, 132, 227, 0.4);
}

input[type="range"][b-8zvbxzfxwy]::-moz-range-thumb:active {
  transform: scale(1.1);
  background: #0984e3;
}

.sensitivity-labels[b-8zvbxzfxwy] {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #636e72;
}

.label-left[b-8zvbxzfxwy] {
  color: #55efc4;
  font-weight: 500;
}

.label-right[b-8zvbxzfxwy] {
  color: #ff7675;
  font-weight: 500;
}
/* /Components/Pages/PhraseLooper.razor.rz.scp.css */
.phrase-looper-container[b-0rafjnd05o] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem 2rem;
}

.header-with-logo[b-0rafjnd05o] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: -1rem 0 -1rem 0;
}

.app-logo[b-0rafjnd05o] {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin: 0;
  display: block;
}

.phrase-looper-container h1[b-0rafjnd05o] {
  text-align: center;
  color: #2d3436;
  margin: 0;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.recording-status[b-0rafjnd05o] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 500;
}

.recording-status.pending[b-0rafjnd05o] {
  background-color: #fff3cd;
  border: 2px solid #ffc107;
}

.recording-status.denied[b-0rafjnd05o] {
  background-color: #f8d7da;
  border: 2px solid #dc3545;
}

.recording-status.calibrating[b-0rafjnd05o] {
  background-color: #d1ecf1;
  border: 2px solid #17a2b8;
}

.recording-status.listening[b-0rafjnd05o] {
  background-color: #d4edda;
  border: 2px solid #28a745;
}

.recording-status.recording[b-0rafjnd05o] {
  background-color: #f8d7da;
  border: 2px solid #dc3545;
  animation: pulse-b-0rafjnd05o 1s infinite;
}

.recording-status.playback[b-0rafjnd05o] {
  background-color: #cce5ff;
  border: 2px solid #007bff;
}

@keyframes pulse-b-0rafjnd05o {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.status-icon[b-0rafjnd05o] {
  font-size: 2rem;
}

.permission-section[b-0rafjnd05o],
.error-section[b-0rafjnd05o] {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.permission-section p[b-0rafjnd05o] {
  font-size: 1.1rem;
  color: #636e72;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-section[b-0rafjnd05o] {
  background: #fff5f5;
  border: 2px solid #ff7675;
}

.error-section p[b-0rafjnd05o] {
  color: #d63031;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.btn-primary[b-0rafjnd05o] {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover[b-0rafjnd05o] {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:active[b-0rafjnd05o] {
  transform: translateY(0);
}

.calibration-panel[b-0rafjnd05o] {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.calibration-countdown h3[b-0rafjnd05o] {
  margin-bottom: 1rem;
  color: #17a2b8;
}

.countdown-timer[b-0rafjnd05o] {
  font-size: 4rem;
  font-weight: bold;
  color: #17a2b8;
  margin: 1rem 0;
}

.btn-calibrate[b-0rafjnd05o] {
  background-color: #17a2b8;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-calibrate:hover[b-0rafjnd05o] {
  background-color: #138496;
}

.warning[b-0rafjnd05o] {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 6px;
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
}

.session-info[b-0rafjnd05o] {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.session-controls[b-0rafjnd05o] {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.btn-auto-detect[b-0rafjnd05o] {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
}

.btn-auto-detect:hover[b-0rafjnd05o] {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
}

.btn-auto-detect:active[b-0rafjnd05o] {
  transform: translateY(0);
}

.level-display[b-0rafjnd05o],
.threshold-display[b-0rafjnd05o] {
  font-family: "Courier New", monospace;
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .phrase-looper-container[b-0rafjnd05o] {
    padding: 1rem;
  }

  .phrase-looper-container h1[b-0rafjnd05o] {
    font-size: 2rem;
  }

  .permission-section[b-0rafjnd05o] {
    padding: 2rem 1rem;
  }

  .session-controls[b-0rafjnd05o] {
    gap: 1rem;
  }
}

.threshold-display[b-0rafjnd05o] {
  color: #666;
  font-size: 0.9rem;
}
