.wizard-actions {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.wizard-actions button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.wizard-actions button.btn-primary {
  background: #2196F3;
  color: white;
}
.wizard-actions button.btn-primary:hover {
  background: #1976D2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.wizard-actions button.btn-secondary {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}
.wizard-actions button.btn-secondary:hover {
  background: #e0e0e0;
}
.wizard-actions button.btn-save {
  background: #4CAF50;
  color: white;
}
.wizard-actions button.btn-save:hover {
  background: #388E3C;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
