html
{
	font-family: "Liberation Sans", "Calibri";
	height:100%;
	background:url("static/background2.jpg");
	background-attachment: fixed;

	display:flex;
	flex:1;
	justify-content:center;
	flex-direction: row;
	
}

html.statistics
{
	background: rgb(26, 24, 31);
}

body
{
	display:flex;
	justify-content:center;
	flex-direction: column;
	
	position:absolute;
	padding-top: 15px;
	width:100%;
	/* background:linear-gradient(to bottom, rgb(10 61 98 / 87%), rgb(80 85 90 / 78%)); */
}

h1
{
	text-align:center;
	font-style: uppercase;
}

#main
{
	margin-top:15px;
	margin-right:15px;
	padding: 15px;
	background:rgba(0,0,0,0.4);
	background-size:cover;
	
	display:flex;
	flex-direction: column;
	justify-content:center;
}

select,body,input{
	color: #ecf0f1;
}

select
{
	background-color: rgba(10 10 10 / 50%);
	font-family:inherit;
}

#statisticsTable
{
	background-color:rgb(50 50 50);
}

#filters
{
	margin-top: 8px;
	padding:12px;
	margin-bottom: 10px;
	display:flex;
	flex-direction:row;
	justify-content:flex-start;
}

#filters div
{
	margin-left:10px;
	margin-right:10px;
}

#table-container
{
	animation: fadein 2s;
}

h1, h2, h3, th {
	text-shadow: 2px 2px black;
}

#loading
{
	display:flex;
	flex-direction:row;
	justify-content:center;
	padding:100px;
}

#loading img
{
	max-height:92px;
	max-width:128px;
}

.cheat
{
	color: pink;
}

.noWrap
{
	white-space: nowrap;
}

td.playerElement, td.spawnerElement, td.totalRealSecondsElement 
{
	font-weight:bold;
}

td.playerElement
{
	background:rgba(255,255,255, 0.1);
}

body#statistics
{
	border:0;
	background:0;
	margin-top:0px;
}

html#feedback-page body
{
	background:0;
	border:0;
	margin-top:0px;
	WIDTH:auto;
	margin:auto;
}

#statistics table
{
    border-collapse: collapse;
    border-style: hidden;
	flex-grow:1;
	border:1px solid gray;
}

#statistics table td, #statistics table th
{
    border: 1px dotted gray;
}

#statistics td
{
	padding:15px;
}

#statistics .category, #statistics .category.spawners div
{
	display:flex;
	flex-direction:row;
	justify-content: flex-start;
	margin-bottom:50px;
}

#statistics .category.spawners
{
	flex-direction:column;
}

#statistics .category canvas
{
	width:auto !important;
	height: auto !important;
	max-width:300px;
	max-height:300px;
}

#statistics #loading-bar-text
{
	padding:5px;
	margin:5px;
	border-radius: 5px;
	font-family:monospace;
	background-color:rgb(26, 24, 31);
}

.charts-container
{
	max-height:400px;
	display:flex;
	flex-direction:horizontal;
	justify-content:space-around;
}

#version-picker .checkbox-input-block
{
	word-spacing: 10px;
}

#version-picker .checkbox-input-block.fake
{
	font-style:italic;
	color:gray;
}

#filters #version-checkboxes .version-checklist
{
	display:flex;
	flex-direction:row;
	border:1px solid white;
	padding:6px;	
}

#filters #version-checkboxes .header
{
	font-weight:bold;
}
#filters #version-checkboxes summary
{
	cursor: pointer;
	font-style:italic;
	color:gray;
	padding:3px;
}

#filters #version-checkboxes .version-checklist div.checkbox-input-block
{
	display:flex;
	flex-direction:row;
}

#filters #version-checkboxes .version-checklist div
{
	display:flex;
	flex-direction:column;
}

#filters #version-checkboxes .version-checklist input[type="checkbox"]
{
    vertical-align:middle;
}

#content .report-section, #message-body
{
	margin:10px;
	padding:10px;
	box-shadow: 6px 6px black;
}

#message-body
{
	color:black;
	background-color:palegoldenrod;
	border-radius: 10px;
	/* text-decoration: underline;
	text-decoration-color:rgba(0,0,0,0.1);
	text-underline-offset: 4px; */
	font-family: Trebuchet MS, sans-serif;
	white-space: pre-wrap;
	max-width:100%;
}

#content .report-section
{
	line-height: 1.25em;
	background-color: #444;
}

#content .report-section h3
{
	margin-bottom:0;
	line-height:1.5em;
}

#content a
{
	color:white;
}

#content .position .x
{
	color:pink;
}

#content .position .y
{
	color:lightgreen;
}

#content .position .z
{
	color:lightblue;
}

#message-body #message
{
	text-indent:25px;
}

/* Marquee shenanigans */
.marquee-container {
	width: 100%;
	height: 192px;	
	overflow: hidden;
	position: relative;
}
.marquee-container div.marquee-wagon {
	position: absolute;
	margin: 0;
	line-height: 50px;
	text-align: center;
	/* Starting position */
	-moz-transform:translateX(100%);
	-webkit-transform:translateX(100%);	
	transform:translateX(100%);
	/* Apply animation to this element */	
	-moz-animation: anim 5s linear 1;
	-webkit-animation: anim 5s linear 1;
	animation: anim 5s linear 1;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Move it (define the animation) */
@-moz-keyframes anim {
	0%   { -moz-transform: translateX(0%); }
	100% { -moz-transform: translateX(100%); }
}
@-webkit-keyframes anim {
	0%   { -webkit-transform: translateX(0%); }
	100% { -webkit-transform: translateX(100%); }
}
@keyframes anim {
	0%   { 
		-moz-transform: translateX(0%); /* Firefox bug fix */
		-webkit-transform: translateX(0%); /* Firefox bug fix */
		transform: translateX(0%); 		
	}
	100% { 
		-moz-transform: translateX(100%); /* Firefox bug fix */
		-webkit-transform: translateX(100%); /* Firefox bug fix */
		transform: translateX(100%); 
	}
}