@font-face {
	font-family: "Robotic";
	src: url("/assets/Audiowide/Audiowide-Regular.ttf");
}

* {
	margin: 0px;
	padding: 0px;
}

body {
	display: flex;
	align-items: center;
	flex-direction: column;
	background-color: antiquewhite;
}

.hed {
	font-size: 28px;
	text-align: center;
	margin: 10px;
	font-family: "Robotic";
}

table {
	border: 2px solid black;
	border-collapse: collapse;
	margin: 10px;
	gap: 0px;
	text-align: center;
}

th,
td {
	border: 1px solid black;
	margin: 0px;
	padding: 5px;
	min-width: 15vw;
}

caption {
	font-family: "Robotic";
	padding: 2px;
	border: 2px solid black;
	border-bottom: 0px;
	background-color: rgb(0, 0, 0, 0.1);
}

button {
	background-color: rgb(255, 255, 255, 0);
	border: none;
	cursor: pointer;
}

button:hover {
	scale: 1.2;
}

.delBtn {
	background-color: rgb(255, 0, 0);
	border-radius: 5px;
	padding: 2px 5px;
	color: white;
}

.newBtn {
	background-color: brown;
	border-radius: 5px;
	padding: 5px 10px;
	margin: 5px;
	color: white;
}

dialog[open] {
	margin-top: 30vh;
	min-height: 30vh;
	min-width: 60vw;
	justify-self: center;
	display: flex;
	justify-content: space-evenly;
	flex-direction: column;
	align-items: center;
	background-color: antiquewhite;
}

dialog form {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
form label {
	display: flex;
	align-items: center;
	justify-content: center;
}
form button {
	background-color: brown;
	color: white;
	padding: 5px 10px;
	margin: 10px;
	border-radius: 5px;
}

form input {
	background-color: rgb(255, 255, 255, 0);
	border: 0px;
	border-bottom: 2px solid black;
	margin: 5px;
	text-align: center;
}

form input:focus {
	border: 0px;
	border-bottom: 2px solid black;
	outline: none;
}
