.body{
	font-family: Arial, Helvetica, sans-serif;
}
.main-container{
	position: relative;
	width: 100%;
	height: calc(100vh - 64px);
	display: flex;
	justify-content: center;
	align-items: center;
}
.main-container > div{
	box-shadow: 0 0 8px rgba(0,0,0,0.2);
	padding: 30px;
}
.form-field{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 470px;
	margin-top: 30px;
}
.form-field input, select{
	min-width: 300px;
	padding: 5px;
	outline: none !important;
}
.form-field label{
	font-size: 14px;
	font-weight: bold;
}

.button-primary{
	background-color: #00bfff;
	color: white;
	padding: 5px 15px;
	border-radius: 10px;
	cursor: pointer;
	outline: none !important;
	font-size: 13px;
}
.anchor-tag-reset{
	text-decoration: none;
}
.button-primary:hover{
	transform: scale(1.1);
}
.button-disabled{
	background-color: rgba(0,0,0,0.2);
}
.display-flex{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.second-button{
	margin-left: 20px;
}

.loading-screen{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: none;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0.2);
}
.loading-screen-content img{
	width: 80px;
}
.loading-screen-content{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.table{
	border-collapse: collapse;
	border: 1px solid black;
}
th, tr, td{
	border: 1px solid black;
	padding: 20px;
}
.bg-info{
	background: rgba(189,189,245, 0.8);
}

.recon-status-sub-container{
	margin: 20px 0;
	position: absolute;
	top: 0;
}

.download-file-link{
	text-decoration: none;
	border-radius: 5px;
	background-color: white;
	padding: 4px 8px;
	background: rgba(144, 144, 197, 0.8);
	color: white;
	cursor: pointer;
}

.success{
	color: green;
}
.failed{
	color: red;
}
.processing{
	color: blue;
}