diff --git a/src/components/gui/gui.css b/src/components/gui/gui.css
index 43a0191b7ee17aa60617ff83e16ea4ce7b415bc7..e2fe4db4333437657c6c3009fdde3c8df478b158 100644
--- a/src/components/gui/gui.css
+++ b/src/components/gui/gui.css
@@ -33,18 +33,41 @@
 
 .tab-list {
     height: $stage-menu-height;
+    width: 250px; /* Match width of the toolbox */
     display: flex;
     align-items: flex-end;
     flex-shrink: 0;
 
     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-    font-size: 0.85rem;
+    font-weight: 500;
+    font-size: 0.80rem;
 
     /* Overrides for react-tabs styling */
-    margin: 0 0 0 1rem !important;
+    margin: 0 !important;
     border-bottom: 0 !important;
 }
 
+.tab-list .tab {
+    flex-grow: 1;
+    height: 80%;
+    margin-left: 1px;
+
+    border-radius: $space $space 0 0;
+    border: none;
+
+    background-color: #F6F8FA;
+    color: #9AA1B5;
+
+    display: flex;
+    justify-content: center;
+    align-items: center;
+}
+
+
+.tab-list .tab[aria-selected="true"] {
+    color: #40B9F5;
+}
+
 .tabs {
     position: relative;
     flex-grow: 1;
@@ -90,7 +113,7 @@
     padding-right: $space;
 
     /* Hides negative space between edge of rounded corners + container, when selected */
-    user-select: none; 
+    user-select: none;
 }
 
 .target-wrapper {
diff --git a/src/components/gui/gui.jsx b/src/components/gui/gui.jsx
index a131ad40ad54fb924ece7ff367cf4f8df0af4b2d..0a7c2704dd892d66cd859287cf049cac0ba240d3 100644
--- a/src/components/gui/gui.jsx
+++ b/src/components/gui/gui.jsx
@@ -50,9 +50,9 @@ const GUIComponent = props => {
                             onSelect={handleTabSelect}
                         >
                             <TabList className={styles.tabList}>
-                                <Tab>Scripts</Tab>
-                                <Tab>Costumes</Tab>
-                                <Tab>Sounds</Tab>
+                                <Tab className={styles.tab}>Scripts</Tab>
+                                <Tab className={styles.tab}>Costumes</Tab>
+                                <Tab className={styles.tab}>Sounds</Tab>
                             </TabList>
                             <TabPanel className={styles.tabPanel}>
                                 <Box className={styles.blocksWrapper}>