div.container {
	margin: auto;
	display: none;
}

div#loading_div {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	text-align: center;
	z-index: 77777;
	background-color: rgba(0, 0, 0, 0.5);
}

div#loading_image {
	text-align: center;
}

div#loading_message {
	font-size: 22px;
	font-weight: bold;
	color: white;
	text-align: center;
}

span.loading_files {
	font-size: 14px;
	color: white;
}

@media (prefers-color-scheme: dark) {
	/* Dark theme styles go here */
	div#loading_div {
		background-color: rgba(0, 0, 0, 0.5);
	}
	
	div#loading_message {
		color: white;
	}
}

@media (prefers-color-scheme: light) {
	/* Light theme styles go here */
	div#loading_div {
		background-color: rgba(0, 0, 0, 0.3);
	}
	
	div#loading_message {
		color: white;
	}
}
