Plugin Elementor: How can I integrate a Continue Shopping button in the side shopping cart?

add_action('woocommerce_widget_shopping_cart_buttons', 'add_continue_shopping_button_to_elementor_side_cart', 20);
function add_continue_shopping_button_to_elementor_side_cart() {
  $shop_page_url = get_permalink( wc_get_page_id( 'shop' ) ); // Change this if needed
  echo '<a href="' . esc_url( $shop_page_url ) . '" class="button continue-shopping" style="background-color: #FF0000; color: #fff; text-transform: uppercase; font-weight: bold; margin-right: 10px;">' . __( 'Continue Shopping', 'woocommerce' ) . '</a>';
}
.woocommerce-mini-cart__buttons .continue-shopping {
  background-color: #FF0000;
  color: #fff; 
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  margin-right: 10px;
 display: inline-block;
}
.woocommerce-mini-cart__buttons .continue-shopping:hover {
 background-color: #cc0000;
}