.input{
    font-family:"ariblk";
    font-size:1rem;
    background:white;
    color:black;
    border-radius:10px;
    border:2px solid black;

}


/* The class 'resultswrap' is used for the HTML element itself. */
.resultswrap {
	font-family: "ariblk", sans-serif;	/* Match Arial on the Text object */
	border: 1px solid black;		/* Add a black border */
	overflow-y: auto;				/* Allow vertical scrolling */
    border-radius:10px;
	

	
}

.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: #e72a68;
}

/* 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:#4b95eb;
	color:white;
	
}

/* Highlight the table header  */
.resultstable thead {
	background-color: #e72a68;
	color:white;
}

/* For all table cells, show a border and add some padding. */
.resultstable td,
.resultstable th {
	border: none;
	padding: 0.3em;
	text-align:center;
}

/* Highlight alternate table rows */
.resultstable tr:nth-child(even) {
	background-color: #0b1665;
	
}

/* Show the score column bold, and the time column italic */
.resultstable td.score {
	font-weight: bold;

	
}