diff --git a/Assets/UI/MainMenu/MainMenuDocument.uxml b/Assets/UI/MainMenu/MainMenuDocument.uxml
index 4c23e4d9e0991484a3aa2c742909dbd928193912..c0453013292a2764fba8e85ad73c1077be870d12 100644
--- a/Assets/UI/MainMenu/MainMenuDocument.uxml
+++ b/Assets/UI/MainMenu/MainMenuDocument.uxml
@@ -4,14 +4,14 @@
         <ui:VisualElement name="MainContent" style="align-items: center; justify-content: space-between; max-width: 35%; display: none;">
             <ui:Label text="Do-o Tower Defense" display-tooltip-when-elided="true" style="font-size: 52px; white-space: normal; -unity-text-align: upper-center; color: rgb(255, 255, 255); -unity-font-style: bold;" />
             <ui:VisualElement style="align-items: stretch;">
-                <ui:Button text="NEW GAME" display-tooltip-when-elided="true" name="NewGameButton" class="button-style" style="background-color: rgb(255, 255, 255);" />
-                <ui:Button text="GUIDE" display-tooltip-when-elided="true" name="RulesButton" class="button-style" style="background-color: rgb(255, 255, 255);" />
-                <ui:Button text="EXIT" display-tooltip-when-elided="true" name="ExitButton" class="button-style" style="font-size: 24px; background-color: rgb(255, 255, 255);" />
+                <ui:Button focusable="false" text="NEW GAME" display-tooltip-when-elided="true" name="NewGameButton" class="button-style" style="background-color: rgb(255, 255, 255);" />
+                <ui:Button focusable="false" text="GUIDE" display-tooltip-when-elided="true" name="RulesButton" class="button-style" style="background-color: rgb(255, 255, 255);" />
+                <ui:Button focusable="false" text="EXIT" display-tooltip-when-elided="true" name="ExitButton" class="button-style" style="font-size: 24px; background-color: rgb(255, 255, 255);" />
             </ui:VisualElement>
         </ui:VisualElement>
         <ui:VisualElement name="GameDescription" style="max-width: 35%; color: rgb(255, 255, 255); display: flex; align-items: flex-start;">
             <ui:ScrollView scroll-deceleration-rate="0,135" elasticity="0,1" show-horizontal-scroller="false" show-vertical-scroller="false" horizontal-scroller-visibility="Hidden" vertical-scroller-visibility="Hidden" style="align-items: stretch;">
-                <ui:Button text="Return" display-tooltip-when-elided="true" name="ReturnButton" class="button-style" style="padding-left: 24px; padding-right: 24px; padding-top: 8px; padding-bottom: 8px; background-color: rgb(255, 255, 255); margin-left: 0; margin-right: 0;" />
+                <ui:Button focusable="false" text="Return" display-tooltip-when-elided="true" name="ReturnButton" class="button-style" style="padding-left: 24px; padding-right: 24px; padding-top: 8px; padding-bottom: 8px; background-color: rgb(255, 255, 255); margin-left: 0; margin-right: 0;" />
                 <ui:Label text="Guide" display-tooltip-when-elided="true" style="font-size: 52px; white-space: normal; -unity-text-align: upper-left; color: rgb(255, 255, 255); -unity-font-style: bold; margin-top: 16px; margin-bottom: 16px;" />
                 <ui:VisualElement name="TextContent"/>
             </ui:ScrollView>
diff --git a/Assets/UI/Simulation/BattleUI/BattleUI.uxml b/Assets/UI/Simulation/BattleUI/BattleUI.uxml
index 2a9ae70a5d44f81b06b22ab9f9b10017e6dbc30e..5f82e7cb510906ed8cf755741601c5856cec4075 100644
--- a/Assets/UI/Simulation/BattleUI/BattleUI.uxml
+++ b/Assets/UI/Simulation/BattleUI/BattleUI.uxml
@@ -53,8 +53,8 @@
                             </ui:VisualElement>
                         </ui:ScrollView>
                         <ui:VisualElement name="ButtonContainer" class="NextButtonStyle" style="flex-grow: 0; flex-shrink: 0; position: relative; left: auto; right: auto; bottom: auto; border-left-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-top-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-top-width: 0; border-left-width: 0; height: 175px; border-right-width: 0; border-bottom-width: 0;">
-                            <ui:Button text="PAUSE" display-tooltip-when-elided="true" name="Pause" class="button" style="bottom: auto; position: relative; border-top-left-radius: 8px; border-bottom-left-radius: 8px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; margin-left: 12px; margin-right: 12px; margin-top: 12px; margin-bottom: 12px; flex-grow: 1; font-size: 32px; display: flex;" />
-                            <ui:Button text="EXIT" display-tooltip-when-elided="true" name="Exit" class="button" style="bottom: auto; position: relative; border-top-left-radius: 8px; border-bottom-left-radius: 8px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; margin-left: 12px; margin-right: 12px; margin-top: 12px; margin-bottom: 12px; flex-grow: 1; font-size: 32px; display: none;" />
+                            <ui:Button focusable="false" text="PAUSE" display-tooltip-when-elided="true" name="Pause" class="button" style="bottom: auto; position: relative; border-top-left-radius: 8px; border-bottom-left-radius: 8px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; margin-left: 12px; margin-right: 12px; margin-top: 12px; margin-bottom: 12px; flex-grow: 1; font-size: 32px; display: flex;" />
+                            <ui:Button focusable="false" text="EXIT" display-tooltip-when-elided="true" name="Exit" class="button" style="bottom: auto; position: relative; border-top-left-radius: 8px; border-bottom-left-radius: 8px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; margin-left: 12px; margin-right: 12px; margin-top: 12px; margin-bottom: 12px; flex-grow: 1; font-size: 32px; display: none;" />
                         </ui:VisualElement>
                     </ui:VisualElement>
                 </ui:VisualElement>
diff --git a/Assets/UI/Simulation/GameOverOverlay/GameOverOverlay.uxml b/Assets/UI/Simulation/GameOverOverlay/GameOverOverlay.uxml
index d153e66f5035902ff3649db9be354463dab63471..081b59c144a91928ce94385f7152405d7c47782a 100644
--- a/Assets/UI/Simulation/GameOverOverlay/GameOverOverlay.uxml
+++ b/Assets/UI/Simulation/GameOverOverlay/GameOverOverlay.uxml
@@ -4,7 +4,7 @@
         <ui:VisualElement name="GameOverDialog" style="height: auto; padding-left: 64px; padding-right: 64px; padding-top: 16px; padding-bottom: 16px; background-color: rgb(255, 255, 255); border-top-left-radius: 12px; border-bottom-left-radius: 12px; border-top-right-radius: 12px; border-bottom-right-radius: 12px;">
             <ui:Label text="Game Over!" display-tooltip-when-elided="true" name="GameOverText" class="DialogTitle" style="margin-right: 4px; margin-left: 4px; margin-bottom: 4px;" />
             <ui:Label text="Player Red has won the battle!" display-tooltip-when-elided="true" name="Message" style="margin-bottom: 20px; -unity-text-align: upper-center; font-size: 16px;" />
-            <ui:Button text="OK" display-tooltip-when-elided="true" name="OkButton" class="DialogButton" />
+            <ui:Button focusable="false" text="OK" display-tooltip-when-elided="true" name="OkButton" class="DialogButton" />
         </ui:VisualElement>
     </ui:VisualElement>
 </ui:UXML>
diff --git a/Assets/UI/Simulation/PauseOverlay/PauseOverlay.uxml b/Assets/UI/Simulation/PauseOverlay/PauseOverlay.uxml
index 889fbabf3b0525104600a57d290c8a57989743fd..97d5349905e571ec1f3f4089af1ce3f85ef27cc8 100644
--- a/Assets/UI/Simulation/PauseOverlay/PauseOverlay.uxml
+++ b/Assets/UI/Simulation/PauseOverlay/PauseOverlay.uxml
@@ -3,9 +3,9 @@
     <ui:VisualElement name="PauseRoot" style="flex-grow: 1; background-color: rgba(0, 0, 0, 0.25); justify-content: center; align-items: center;">
         <ui:VisualElement name="PauseDialog" style="height: auto; padding-left: 64px; padding-right: 64px; padding-top: 16px; padding-bottom: 16px; background-color: rgb(255, 255, 255); border-top-left-radius: 12px; border-bottom-left-radius: 12px; border-top-right-radius: 12px; border-bottom-right-radius: 12px;">
             <ui:Label text="Paused" display-tooltip-when-elided="true" name="PausedText" class="DialogTitle" />
-            <ui:Button text="Resume" display-tooltip-when-elided="true" name="ResumeButton" class="DialogButton" />
-            <ui:Button text="New Game" display-tooltip-when-elided="true" name="NewGameButton" class="DialogButton" />
-            <ui:Button text="Exit" display-tooltip-when-elided="true" name="ExitButton" class="DialogButton" />
+            <ui:Button focusable="false" text="Resume" display-tooltip-when-elided="true" name="ResumeButton" class="DialogButton" />
+            <ui:Button focusable="false" text="New Game" display-tooltip-when-elided="true" name="NewGameButton" class="DialogButton" />
+            <ui:Button focusable="false" text="Exit" display-tooltip-when-elided="true" name="ExitButton" class="DialogButton" />
         </ui:VisualElement>
     </ui:VisualElement>
 </ui:UXML>
diff --git a/Assets/UI/Simulation/TowerPlacing/TowerPlacingUI.uxml b/Assets/UI/Simulation/TowerPlacing/TowerPlacingUI.uxml
index 8cbf9ae0ecc8aabdd82e96e8260035d956c2b00b..a9fe870d3d868c5706ef72b8261c92e5c3c0aff7 100644
--- a/Assets/UI/Simulation/TowerPlacing/TowerPlacingUI.uxml
+++ b/Assets/UI/Simulation/TowerPlacing/TowerPlacingUI.uxml
@@ -21,8 +21,8 @@
                             <ui:VisualElement name="DeployedTowerStats" style="display: flex;">
                                 <ui:Label text="Deployer Tower Name" display-tooltip-when-elided="true" name="TowerName" style="font-size: 16px; -unity-font-style: bold; margin-top: 8px; white-space: normal;" />
                                 <ui:VisualElement name="TabButtons" style="flex-direction: row; align-items: stretch; justify-content: space-between; margin-bottom: 12px;">
-                                    <ui:Button text="STATS" display-tooltip-when-elided="true" name="StatsButton" class="button" style="padding-left: 8px; padding-right: 8px; flex-grow: 1;" />
-                                    <ui:Button text="MANAGE" display-tooltip-when-elided="true" name="ManageButton" class="button" style="padding-left: 8px; padding-right: 8px; flex-grow: 1;" />
+                                    <ui:Button focusable="false" text="STATS" display-tooltip-when-elided="true" name="StatsButton" class="button" style="padding-left: 8px; padding-right: 8px; flex-grow: 1;" />
+                                    <ui:Button focusable="false" text="MANAGE" display-tooltip-when-elided="true" name="ManageButton" class="button" style="padding-left: 8px; padding-right: 8px; flex-grow: 1;" />
                                 </ui:VisualElement>
                                 <ui:VisualElement name="StatsContainer" style="display: none; margin-left: 12px;" />
                                 <ui:VisualElement name="ManageContainer">
@@ -32,17 +32,17 @@
                                             <ui:Label text="Szia uram itt van sok stats" display-tooltip-when-elided="true" style="white-space: normal;" />
                                         </ui:VisualElement>
                                         <ui:Label text="Upgrade Cost: 100" display-tooltip-when-elided="true" name="UpgradeCost" style="margin-top: 16px; white-space: normal; font-size: 16px;" />
-                                        <ui:Button text="UPGRADE" display-tooltip-when-elided="true" name="UpgradeButton" class="button" />
+                                        <ui:Button focusable="false" text="UPGRADE" display-tooltip-when-elided="true" name="UpgradeButton" class="button" />
                                     </ui:VisualElement>
                                     <ui:Label text="Money Recovered after destroyed: 100" display-tooltip-when-elided="true" name="MoneyRecoveredText" style="white-space: normal; margin-top: 16px; font-size: 16px;" />
-                                    <ui:Button text="DESTROY" display-tooltip-when-elided="true" name="DestroyButton" class="button" />
+                                    <ui:Button focusable="false" text="DESTROY" display-tooltip-when-elided="true" name="DestroyButton" class="button" />
                                 </ui:VisualElement>
                             </ui:VisualElement>
                             <ui:Label text="Select a tower type to place" display-tooltip-when-elided="true" name="InstructionsText" style="white-space: normal; display: none;" />
                         </ui:VisualElement>
                     </ui:ScrollView>
                     <ui:VisualElement name="NextButtonContainer" class="NextButtonStyle" style="left: auto; right: auto; bottom: auto; flex-direction: row; align-items: stretch; justify-content: space-around; flex-grow: 0; position: relative; flex-shrink: 0; height: 175px;">
-                        <ui:Button text="NEXT" display-tooltip-when-elided="true" name="Next" class="button" style="border-top-left-radius: 8px; border-bottom-left-radius: 8px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; margin-left: 12px; margin-right: 12px; margin-top: 12px; margin-bottom: 12px; flex-grow: 1; font-size: 32px;" />
+                        <ui:Button focusable="false" text="NEXT" display-tooltip-when-elided="true" name="Next" class="button" style="border-top-left-radius: 8px; border-bottom-left-radius: 8px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; margin-left: 12px; margin-right: 12px; margin-top: 12px; margin-bottom: 12px; flex-grow: 1; font-size: 32px;" />
                     </ui:VisualElement>
                 </ui:VisualElement>
             </ui:VisualElement>
diff --git a/Assets/UI/Simulation/UnitDeployment/UnitDeploymentUI.uxml b/Assets/UI/Simulation/UnitDeployment/UnitDeploymentUI.uxml
index b3dc478dbae9994082059f78a0f3f98cecb224be..074179b3be07b9d6c5a293c5a293bbd5f009b519 100644
--- a/Assets/UI/Simulation/UnitDeployment/UnitDeploymentUI.uxml
+++ b/Assets/UI/Simulation/UnitDeployment/UnitDeploymentUI.uxml
@@ -8,7 +8,7 @@
             </ui:VisualElement>
             <ui:VisualElement name="TopPanel" class="TopPanelStyle" style="flex-shrink: 0; padding-left: 8px; padding-right: 8px; padding-top: 8px; padding-bottom: 8px;">
                 <ui:VisualElement name="NextButtonContainer" class="NextButtonStyle buttons" style="flex-shrink: 0; height: 175px;">
-                    <ui:Button text="NEXT" display-tooltip-when-elided="true" name="Next" class="button" style="bottom: auto; position: relative; border-top-left-radius: 8px; border-bottom-left-radius: 8px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; margin-left: 12px; margin-right: 12px; margin-top: 12px; margin-bottom: 12px; flex-grow: 1; font-size: 32px; background-color: rgba(255, 255, 255, 0.75);" />
+                    <ui:Button focusable="false" text="NEXT" display-tooltip-when-elided="true" name="Next" class="button" style="bottom: auto; position: relative; border-top-left-radius: 8px; border-bottom-left-radius: 8px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; margin-left: 12px; margin-right: 12px; margin-top: 12px; margin-bottom: 12px; flex-grow: 1; font-size: 32px; background-color: rgba(255, 255, 255, 0.75);" />
                 </ui:VisualElement>
                 <ui:Label text="Deploy Units" display-tooltip-when-elided="true" class="TitleStyle" />
                 <ui:Label text="Player Red&apos;s turn" display-tooltip-when-elided="true" name="PlayerNameTurn" />