:root {
	--banner-height: 5em;
}

a { 
	border-bottom: none;
}

h1 {
	text-align: center;
}

dialog, dialog:focus-visible {
	font: inherit;
	border: none;
	outline: none;
	border-radius: 8px;
	max-height: none;
}
	dialog > h2 {
		text-align: center;
	}

	dialog #table-container {
		margin-bottom: 2em;
		border-radius: 4px;
	}


#site-banner {
	position: fixed;
	z-index: 5;

	width: 100%;
	height: var(--banner-height);
	box-shadow: 0 4px 8px 0 rgba(0,0,0, 0.2);

	background: white;
	display:flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;

	padding-right: 10px;
}

#site-banner button {
	margin-bottom: 0;
}

#site-banner + * {
	padding-top: var(--banner-height);
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.thumbnail {
	width: 250px;
	height: 250px;
	margin: 5px;
	display: inline-block;
	position: relative;
	background: grey;
	border-radius: 15px;
}

.thumbnail > img {
	border-radius: 15px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.thumbnail > i {
	opacity: 75%;
	position: absolute;
	top: 80%;
	right: 5%;
	background: white;
	border-radius: 50%;
	/* natural size is 16x20 */
	width: 40px;
	height: 40px;
	padding-top: 12px;
	padding-left: 0px;
}

.table-page-controls {
	display: flex;
	justify-content: center;
	gap: 10px;
}
