/*
-- ========================
-- Contents
-- ========================
--	[1.0] - Reset
--	[2.0] - Variables
--	[3.0] - Root
--	[4.0] - Grid
--	[5.0] - Typography
--	[6.0] - Forms
--	[7.0] - Header
--	[8.0] - Main
--	[9.0] - Footer
-- ========================
*/

/*
-- ========================
-- [5.0] - Typography
-- ========================
*/

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0.45em 0;
	width: 100%;
}

th, td {
	border: 1px solid #0092CB;
	padding: 0.45em;
	text-align: left;
}

tbody tr:nth-child(2n) td,
tbody tr:nth-child(2n) th[scope="row"] {
	background: #0001;
}

th[scope="col"], thead th, tfoot th, tfoot td {
	background: #0092CB;
	color: #FFF;
	font-family: var(--font-heading);
	font-weight: var(--font-heading-weight);
}

/*
-- ========================
-- [6.0] - Forms
-- ========================
*/

/*
-- ========================
-- [8.0] - Main
-- ========================
*/

/* Pagination */

.dataNav {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 0.45em 0;
	text-align: left;
}

.dataNav a {
	border: 1px solid #666;
	box-sizing: border-box;
	color: #ccc;
	display: block;
	font-size: 16px;
	line-height: 1.8;
	min-width: 2.7em;
	user-select: none;
	padding: 0.45em;
	text-align: center;
	text-decoration: none;
}

.dataNav a:first-child {
	border-bottom-left-radius: 0.25em;
	border-top-left-radius: 0.25em;
}

.dataNav a:last-child {
	border-bottom-right-radius: 0.25em;
	border-top-right-radius: 0.25em;
}

.dataNav a + a {
	border-left: none;
}

.dataNav a:hover {
	background: #fff1;
	color: #fff;
}

.dataNav .selected, .dataNav .selected:hover {
	background: #333;
	border-color: #666;
	color: #666;
	cursor: default;
	filter: none;
	text-decoration: none;
}

/*
-- ========================
-- [9.0] - Footer
-- ========================
*/

.viewguest, .viewguest:hover, .viewguest:active {
	background: #354961;
	border-left: 0.45em solid var(--primary);
	bottom: 0.9em;
	box-shadow: 0 5px 10px rgba(0,0,0,0.4);
	color: #FFF;
	display: inline-block;
	font-family: "Courier New", Courier, serif;
	font-size: 16px;
	font-weight: var(--font-body-weight);
	padding: 0.9em 1.8em;
	position: fixed;
	right: 0;
	text-decoration: none;
	text-transform: none;
	z-index: 2000;
}

.viewguest:hover {
	background-image: linear-gradient(-45deg, rgba(255,255,255,0.2), rgba(255,255,255,0), rgba(255,255,255,0));
}

.viewguest:active {
	background-image: linear-gradient(-45deg, rgba(0,0,0,0.2), rgba(0,0,0,0), rgba(0,0,0,0));
}