
a:link {color:#2c5282;text-decoration:none;}      /* unvisited link */
a:visited {color:#2c5282;text-decoration:none;}  /* visited link */
a:hover {color:#1e3a5f;text-decoration:underline;}  /* mouse over link */
a:active {color:#2c5282;text-decoration:none;}  /* selected link */

.button {
	display: inline-block;
  	margin: 4px 2px;
  	padding: 10px 20px;
	border: 0;
	border-radius: 6px;
	background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
  	line-height: 1.5;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased;
}

a.button {
	color: #fff;
}

.button:hover {
	background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.button:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.button:focus {
	outline: 2px solid #2c5282;
	outline-offset: 2px;
}