.button-link {
  background-color: #007bff; /* Add a background color */
  color: white;             /* Change the text color */
  padding: 10px 10px;       /* Add padding for size */
  text-decoration: none;    /* Remove the default underline */
  border-radius: 5px;       /* Add rounded corners */
  display: inline-block;    /* Allows padding/margin to work correctly */
  cursor: pointer;          /* Ensures the cursor is a pointer */
  border: none;             /* Remove border for a cleaner look */
  text-align: center;       /* Center the text */
  height: 50px;
}

.button-link:hover {
  background-color: #0056b3; /* Style for hover state */
}
