/* The class 'resultswrap' is used for the HTML element itself. */
.resultswrap {
	font-family: ITCAvantGardeStd-Bk, sans-serif;	/* Match Arial on the Text object */
	border: 1px solid black;		/* Add a black border */
	overflow-y: auto;				/* Allow vertical scrolling */
	

	
}

.resultswrap::-webkit-scrollbar {
  width: 10px;
}

.resultswrap::-webkit-scrollbar-track {
  background-color: black;
  
}

.resultswrap::-webkit-scrollbar-thumb {
  
  border: 1px solid transparent;
  background-clip: content-box;
  background-color: #88a6e9;
}

/* The class 'resultstable' is used for the <table> element. */
.resultstable {
	width: 100%;					/* Fill up the width of the HTML element */	
	border-collapse: collapse;		/* Allow cell borders to collapse */	
	background:#d1ddff;
	color:black;
	
}

/* Highlight the table header with a grey background */
.resultstable thead {
	background-color: #88a6e9;
	font-family:ITCAvantGardeStd-Demi;
	color:black;
}

/* For all table cells, show a border and add some padding. */
.resultstable td,
.resultstable th {
	border: none;
	padding: 0.3em;
	font-family:ITCAvantGardeStd-Bk;
	text-align:center;
}

/* Highlight alternate table rows */
.resultstable tr:nth-child(even) {
	background-color: white;
	
}

/* Show the score column bold, and the time column italic */
.resultstable td.score {
	font-weight: bold;
	font-family:ITCAvantGardeStd-Demi;
	
}

.boton{
	font-family:ITCAvantGardeStd-Demi;
	background:#88a6e9;
	color:white;
	font-size:30px;
	border-radius:10px;
	border:2px solid white;

}
