.Button-field input { color: transparent; width: 100% !important; /* Full width */ font-weight: bold; box-sizing: border-box !important; /* Include padding and border in the element's total width and height */ border: none !important; /* Remove the border */ background-color: #FAFAFA !important; /* Set the background color */ } .Button-label { width: 100px; display: inline-block;} .Button-Border { border: 1px solid blue; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); padding: 5px; background-color: white; transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transition for movement and shadow */ } .Button-Border:hover { transform: translateY(-2px); /* Moves the button up by 2px */ box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4); /* Increases shadow on hover for a more lifted look */ }