.navbtn{
	background:#6500e4;
	font-family:SanofiSans-Bold;
	font-size:16px;
	border-radius:20px;
	color:white;
	border: 1px solid white;
	
}

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

	
}

.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: #89cfe3;
  
}

/* 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 */	
	font-size:16px;
}

/* Highlight the table header with a grey background */
.resultstable thead {
	background-color: #89cfe3;
	font-family:Omnes;
}

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

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

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