body {
  font-family: 'Vazir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #222222; 
  color: #e5e7eb; 
}

input {
  border-radius: 0.5rem 0 0 0.5rem;
  background-color: #17181a; 
  border-color: #4b5563; 
  color: #e5e7eb; 
}

input::placeholder {
  color: #9ca3af; 
}

button {
  border-radius: 0 0.5rem 0.5rem 0;
}

#micBtn.recording {
  background-color: #dc2626; 
  animation: pulse 1s infinite;
}

select {
  border-radius: 0.375rem;
  background-color: #0f1013; 
  border-color: #4b5563; 
  color: #e5e7eb; 
}

li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background-color: #2a2a2b;
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
}

li:hover {
  background-color: #6b7280; 
}

[dir="ltr"] {
  direction: ltr;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

li {
  animation: fadeIn 0.3s ease-in;
}