@charset "utf-8";
/* copyright 2024 webQ GmbH */

* {
	margin:0px;
	padding:0px;
	outline:none;
	border:0;
	box-sizing: border-box;
}
html, body {
	width: 100%;
}
body {
	font-family: "Open Sans", Verdana, Helvetica, Arial, sans-serif;
	font-size:18px;
	line-height: 150%;
	color: #2B2B2B;
	background-color: #fff;
}
p{
	line-height: 150%;
	margin-bottom: 0.5rem;
}
h1, h2, h3, h4{
	margin-bottom: 1rem;
}
a{
	text-decoration: none;
}

.container{
	width: 100%;
	max-width: 1080px;
	margin: 0em auto;
  	padding: 1em;
}
@media only screen and (max-width: 1080px) {
	.container{
		padding: 1em 1em 2em 1em;
	}
}
.flexbox{
	display: flex;	
}
.align-center{
	justify-content: center;
	align-content: center;
	align-items: center;
}
.column{
	flex-direction: column;
}
.row{
	flex-direction: row;
}
.upload-box{
	position: relative;
	background: #fff;
	box-shadow: 2px 8px 18px #888888;
	border-radius: 1rem;
	margin: 2rem 0;
	padding: 2rem 3rem;
	text-align: center;
	display: flex;
  	flex-direction: column;
}
#uploadForm{
	border: 2px dashed #6893C5;
	border-radius: 1rem;
	width: 80%;
	margin: 100px auto;
	cursor: pointer;
	/*padding: 2rem;*/
	transition: background-color 0.3s, border-color 0.3s;
}
#uploadForm:hover,#uploadForm.highlight {
	background-color: rgba(104, 147, 197, 0.1);
	border-color: #2B2B2B;
}
.button{
	display: flex;
	width: 100%;
	min-height: 150px;
	font-size: 1em;
	padding: 2rem;
	border-radius: 6px;
	cursor: pointer;	
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.upload-box input[type="file"] {
	display: none;
}
#file-preview-container {
	margin-top: 1rem;
	text-align: center;
}
.file-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 1rem;
	font-size: 2rem;
}
.file-icon p {
  	font-size: 1rem;
  	margin-top: 0.5rem;
  	color: #2b2b2b;
}
#uploadButton, #resetButton {
  	margin-top: 1rem;
	margin-bottom: 2rem;
  	background-color: #6893C5;
  	color: white;
  	border: none;
  	border-radius: 6px;
  	padding: 0.8rem 1.5rem;
  	cursor: pointer;
  	font-size: 1rem;
  	transition: background-color 0.3s;
}
#uploadButton:hover {
  	background-color: #5677a2;
}
#output-container {
  	margin-top: 1rem;
  	padding: 1rem;
  	border: 1px solid #ddd;
  	border-radius: 6px;
  	background-color: #f9f9f9;
}