.go-button {
    background-color: #6a139d; /* Purple background */
    color: white; /* White text */
    padding: 10px 20px; /* Top and bottom padding 10px, left and right padding 20px */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Cursor changes to pointer on hover */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
  }

  .go-button:hover, .go-button:focus {
    background-color: #9932CC; /* Slightly lighter purple on hover/focus */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Slightly larger shadow on hover/focus */
  }

  .go-button:active {
    background-color: #4B0082; /* Darker purple when the button is clicked */
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); /* Smaller shadow when the button is clicked */
    transform: translateY(2px); /* Slight move down effect when the button is clicked */
  }
