.hide-important {
  display: none !important;
}

@media (min-width: 933px) {
  .voice-mode-container {
    border-radius: 8px;
  }
}

.voice-mode-container {
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.voice-mode-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #808080;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.recording {
  background-color: #c82333;
}

.voice-mode-circle:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.voice-mode-instructions {
  color: #333;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 1rem;
}

.voice-mode-controls .btn {
  border-radius: 50%;
  padding: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
  background-color: transparent;
  border: 2px solid transparent;
}

.voice-mode-controls .btn.end-btn:hover {
  background-color: #c82333;
}

.voice-mode-controls .btn.pause-btn:hover {
  background-color: #808080;
}
