diff --git a/src/Plugin/Layout/BootstrapLayout.php b/src/Plugin/Layout/BootstrapLayout.php
index 2ca51ccedc..d36f884190 100644
--- a/src/Plugin/Layout/BootstrapLayout.php
+++ b/src/Plugin/Layout/BootstrapLayout.php
@@ -393,7 +393,11 @@ public function buildConfigurationForm(array $form, FormStateInterface $form_sta
     }

     // Container wrapper styling.
-    $form['ui']['tab_content']['appearance'] = $this->stylesGroupManager->buildStylesFormElements($form['ui']['tab_content']['appearance'], $form_state, $this->configuration['container_wrapper']['bootstrap_styles'], 'bootstrap_layout_builder.styles');
+    $styles_form = $this->stylesGroupManager->buildStylesFormElements($form['ui']['tab_content']['appearance'], $form_state, $this->configuration['container_wrapper']['bootstrap_styles'], 'bootstrap_layout_builder.styles');
+    $form['ui']['tab_content']['appearance'] = $styles_form;
+    // Copy the style form #access value to the tab items.
+    $form['ui']['nav_tabs']['appearance']['#access'] = $styles_form['#access'] ?? TRUE;
+    $form['ui']['tab_content']['appearance']['#access'] = $styles_form['#access'] ?? TRUE;

     // Move default admin label input to setting tab.
     $form['ui']['tab_content']['settings']['label'] = $form['label'];
