diff --git a/src/main/resources/fxml/LocalCreate.fxml b/src/main/resources/fxml/LocalCreate.fxml
index 9f032d1de7743921ea362bf7639eb494fa893455..775687f34628a791dff27bf9cd48973757f3dd3a 100644
--- a/src/main/resources/fxml/LocalCreate.fxml
+++ b/src/main/resources/fxml/LocalCreate.fxml
@@ -4,6 +4,7 @@
 <?import javafx.scene.control.Accordion?>
 <?import javafx.scene.control.Button?>
 <?import javafx.scene.control.RadioButton?>
+<?import javafx.scene.control.ScrollPane?>
 <?import javafx.scene.control.TitledPane?>
 <?import javafx.scene.control.ToggleButton?>
 <?import javafx.scene.control.ToggleGroup?>
@@ -23,17 +24,24 @@
               <panes>
                 <TitledPane fx:id="roundsTitledPane" text="Select">
                      <content>
-                        <VBox fx:id="boxBox">
-                           <children>
-                              <ToggleButton mnemonicParsing="false" text="1">
-                                 <toggleGroup>
-                                    <ToggleGroup fx:id="rounds" />
-                                 </toggleGroup>
-                              </ToggleButton>
-                              <ToggleButton mnemonicParsing="false" text="2" toggleGroup="$rounds" />
-                              <ToggleButton mnemonicParsing="false" text="3" toggleGroup="$rounds" />
-                           </children>
-                        </VBox>
+                        <ScrollPane minViewportHeight="40.0">
+                           <content>
+                              <VBox fx:id="boxBox">
+                                 <children>
+                                    <ToggleButton mnemonicParsing="false" styleClass="roundsButton" text="1">
+                                       <toggleGroup>
+                                          <ToggleGroup fx:id="rounds" />
+                                       </toggleGroup>
+                                       <VBox.margin>
+                                          <Insets />
+                                       </VBox.margin>
+                                    </ToggleButton>
+                                    <ToggleButton mnemonicParsing="false" styleClass="roundsButton" text="2" toggleGroup="$rounds" />
+                                    <ToggleButton mnemonicParsing="false" styleClass="roundsButton" text="3" toggleGroup="$rounds" />
+                                 </children>
+                              </VBox>
+                           </content>
+                        </ScrollPane>
                      </content>
                 </TitledPane>
               </panes>
@@ -109,6 +117,5 @@
          </VBox.margin>
       </Button>
       <Pane VBox.vgrow="ALWAYS" />
-      <Pane VBox.vgrow="ALWAYS" />
    </children>
 </VBox>
diff --git a/src/main/resources/styles/style.css b/src/main/resources/styles/style.css
index 4f9ae7b1542b853dbd3af0a2ad89ca279ab54bc6..2322b78e38e2c325926719fb7af04516e50c7a85 100644
--- a/src/main/resources/styles/style.css
+++ b/src/main/resources/styles/style.css
@@ -42,6 +42,46 @@
     -fx-border-width: 0;
 }
 
+
+.scroll-pane > .viewport {
+    -fx-background-color: none;
+}
+
+.scroll-pane {
+    -fx-background-color: transparent;
+}
+
+/*scroll pane scroll bar*/
+.scroll-pane .scroll-bar:horizontal .track,
+.scroll-pane .scroll-bar:vertical .track {
+    -fx-background-color: -fx-dark-brown;
+    -fx-border-color: none;
+    -fx-background-radius: 1em;
+    -fx-border-radius: 1em;
+}
+
+/* The increment and decrement button CSS class of scrollbar */
+.scroll-pane .scroll-bar:vertical .increment-button ,
+.scroll-pane .scroll-bar:vertical .decrement-button {
+    -fx-background-color: transparent;
+    -fx-background-radius: 0em;
+    -fx-padding:0 12 0 0;
+}
+
+.scroll-pane .scroll-bar .increment-arrow,
+.scroll-pane .scroll-bar .decrement-arrow {
+    -fx-shape: " ";
+    -fx-padding: 0;
+}
+
+/* The main scrollbar **thumb** CSS class which we drag every time (movable) */
+.scroll-pane .scroll-bar:horizontal .thumb,
+.scroll-pane .scroll-bar:vertical .thumb {
+    -fx-background-color: white;
+    -fx-background-insets: 2, 0, 0;
+    -fx-background-radius: 1em;
+}
+
 #boxBox {
     -fx-background-color: none;
 }