/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Remove tap highlight on Safari */
* {
	-webkit-tap-highlight-color: transparent;
	outline: none; /* Disable any default focus outline for better control */
  }
  
  /* Ensure links are always black and without underline */
  a {
	color: black !important;
	text-decoration: none !important;
  }
  
  /* Optionally remove any other focus outlines for links */
  a:focus {
	outline: none !important;
  }
  
  /* Resetting text decoration in case some other styles override it */
  a:hover, a:visited, a:active {
	text-decoration: none !important;
	color: black !important;
  }
  
  /* Disable text selection highlight */
  *::selection {
	background: transparent;
  }
  
  /* Optionally disable any touch effects */
  button, input, textarea {
	-webkit-appearance: none;
  }

  /* Global reset for tap highlight on Safari */
* {
	-webkit-tap-highlight-color: transparent;
	outline: none; /* Disable default focus outlines */
  }
  
  /* Ensure all links are black and have no underline */
  a {
	color: black !important;
	text-decoration: none !important;
  }
  
  /* Remove focus outlines on links */
  a:focus, a:hover, a:visited, a:active {
	outline: none !important;
	color: black !important;
	text-decoration: none !important;
  }
  
  /* Remove the blue focus outline and default styles on buttons */
  button, input[type="button"], input[type="submit"], input, textarea {
	-webkit-appearance: none;
	appearance: none;
	border: none; /* Remove default border */
	background: none; /* Remove default background */
	box-shadow: none; /* Remove any shadow */
	outline: none !important; /* Remove the blue focus outline */
	color: inherit; /* Ensure text inherits color (can be black) */
  }
  
  /* Remove button and form elements focus highlights */
  button:focus, input:focus, textarea:focus {
	outline: none !important;
  }
  
  /* Remove link-like behavior from buttons */
  button, input[type="button"], input[type="submit"] {
	text-decoration: none !important;
	color: inherit !important; /* Ensure buttons don't look like links */
  }
  
  /* General button styling (if needed) */
  button, input[type="button"], input[type="submit"] {
	cursor: pointer; /* Optional: keep a pointer cursor for buttons */
  }
  
  /* Disable selection highlighting */
  *::selection {
	background: transparent;
  }

  input[type=text], input[type=button] {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	color: black;
	}
	