@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
body {
	font-family: 'Noto Sans', sans-serif;
	background: #1f1f1f;
	color: #cdcdcd;
	position: absolute;
	top: 10%;
	left: 15%;
	right: 15%;
}

.krysa {
	width: 256px;
}

.icons {
	width: 32px;
}

a {
	color: #cdcdcd;
	text-decoration: underline;
}

table {
	border-collapse: collapse;
	width: 100%;
}

td, th {
	border: 1px solid #ddd;
	padding: 8px;
}

th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: #848484;
	color: white;
}

input[type=text], input[type=number], select {
	background: #1f1f1f;
	color: #cdcdcd;
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #848484;
	border-radius: 4px;
	box-sizing: border-box;
}

input[type=submit] {
	width: 100%;
	background-color: #848484;
	color: #cdcdcd;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

/* Webkit */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Gecko */
input[type=number] {
	-moz-appearance: textfield;
}