* {
    box-sizing: border-box;
    overflow: hidden;
	-webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */	
	-ms-overflow-style: none;
	scrollbar-width: none;
	overflow: scroll;
}	
*::-webkit-scrollbar {
		display: none;
}
	
body {
    font-family: Courier Prime, sans-serif;
    font-size: 15px;
    padding:0;
    margin:0;
    width: 100vw;
	height: 100vh;
    cursor: Default;
	touch-action: manipulation;
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
}

.match {
	display:flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin: 5px;
}

.settings {
	display:flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	margin-bottom: 10px;
}

input {
	font-family: Courier Prime, sans-serif;
	font-size: 15px;
	padding:0;
	margin:0;
	vertical-align: middle;
	text-align: center;
	border: none;
}

.timestart {
	width: 5em;
	height: 35px;
	font-size: 24px !important;
	background-color: rgb(50,50,50);
	color: rgb(252, 255, 40);
	font-weight: bold;	
}

.intensity {
	width: 5em;
	height: 35px;
	background-color: rgb(225,225,225);
	color: rgb(50,50,50);	
}

.timeend {
	width: 5em;
	height: 35px;
	background-color: rgb(205,205,205);
	color: crimson;	
}

.speed {
	width: 5em;
	height: 35px;
	background-color: rgb(150,150,150);
	color: rgb(38, 37, 128);
}



.power {
	width: 2em;
	height: 35px;
	background-color: rgb(50,50,50);
	color: rgb(205,205,205);
}

.team {
	width: 4em;
	height: 35px;
	background-color: rgb(51, 180, 255);
	color: rgb(50,50,50);
	font-weight: bold;
}

.goals {
	width: 3em;
	height: 35px;
	font-size: 24px !important;
	color: rgb(38, 37, 128);
	font-weight: bold;
}

.home {
	background-color: rgb(255, 155, 108);
}
.away {
	background-color: rgb(251, 173, 92);
}
.status {
	width: 2em;
	height: 35px;
	background-color: rgb(205,205,205);
	color: rgb(50,50,50);	
	cursor: default;
	font-weight: bold;
}
.add {
	width: 2em;
	height: 35px;
	background-color: rgb(152, 249, 167);
	color: rgb(50,50,50);	
	cursor: default;
	font-weight: bold;
}
.del {
	width: 2em;
	height: 35px;
	background-color: rgb(255, 181, 181);
	color: crimson;	
	cursor: default;
	font-weight: bold;
}

.hid {
	display: none;
}

input,select:focus {
	outline: none;
}

input::placeholder {
	color: black;
	opacity: 1;
}




