.batch-progress-container {
  width: 100%;
  margin: 20px 0;
}

.progress-bar {
  width: 100%;
  height: 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress {
  height: 100%;
  background-color: #4caf50;
  transition: width 0.3s ease-in-out;
}

.progress-text {
  text-align: center;
  font-size: 14px;
  color: #666;
}

.batch-status {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  background-color: #f8f9fa;
}

.status-message {
  font-size: 16px;
  text-align: center;
}

.status-message.success {
  color: #4caf50;
}

.status-message.error {
  color: #f44336;
}
