/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* START CSS */

body {
	background-color: #1d1e22;
}

#header {
	display: flex;
	flex-direction: row;
	position: relative;
	background-color: #494f61;
	padding: 20px;
}

#header h1, #header label{
	font-family: Arial, Helvetica, sans-serif;
	color: white;
	font-size: 25px;
}

.warning {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-align: center;
    color: white;
}

#searchbar {
	position: absolute;
	right: 25px;
	margin: 0;
}

#searchbar input {
	padding: 3px;
	border-radius: 0.6em;
	margin: 0 auto;
	position: relative;
	border: none;
}

#body {
	display: block;
	margin: 20px auto;
	width: fit-content;
	background-color: 111827;
	border-radius: 1em;
	background-color: #2a2c32;
}

#body th {
	padding: 20px;
}

#body th a {
	color: white;
	text-decoration: none;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
}

#body td {
	color: white;
	padding: 10px;
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
}

#nav {
	display: flex;
	flex-direction: row;
	width: fit-content;
	margin: 30px auto;
	font-size: 21px;
	font-family: Arial, Helvetica, sans-serif;
}

#nav a {
	display: block;
	color: white;
	text-decoration: none;
	margin: 5px;
	background-color: #494f61;
	text-align: center;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 0.6em;
}

footer {
	text-align: center;
	font-size: 20px;
	font-family: arial;
	padding: 40px;
	color: white;
}

#add, #change, #delete {
	display: block;
	margin: 20px auto;
	font-family: Arial, Helvetica, sans-serif;
	width: fit-content;	
}

#addButton, #modifyButton, #changeButton, #cancelButton, #deleteButton{
	display: block;
	margin: 10px auto;
	padding: 5px;
	background-color: white;
	border-radius: 1em;
}

.hidden {
	display: none !important;
}