<style>
				/* How7 Button code was here */
				/* This is to get a nice button appearance. */

			button {          
				-webkit-appearance: none;
				-moz-appearance: none;
				appearance: none;

				background-color: #117bff; /* Vibrant blue background */
				color: #ffffff;            /* White text */
				padding: 8px 16px;        /* Forces thickness and width */
				font-size: 16px;           /* Clean text sizing */
				font-weight: bold;
				border: none;              /* Removes default ugly borders */
				border-radius: 6px;        /* Smooth rounded corners */
				cursor: pointer;           /* Desktop hand cursor */
				display: inline-block;     /* Blocks text from collapsing */
				text-decoration: none;
			}
			
			button { background-color: #0000FF; color: #FFFFFF; }

			  Adds a hover effect for desktop users 
			  --button:hover {
				background-color: #0056b3;
				}
				/* Button code was above here */
</style>