﻿/* General Styles */
body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
}

.logo-image {
	width: 100%;
	max-width: 300px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.container {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 600px;
	margin: 15px 0px;
}

.title {
	text-align: center;
	font-size: 24px;
	margin-bottom: 20px;
	color: #333;
}

#downloadLink {
	display: flex;
	justify-content: center;
}

/* Input Section */
.input-group {
	display: flex;
	margin-bottom: 20px;
	align-items: center;
}

	.input-group textarea {
		flex: 1;
		padding: 10px;
		font-size: 18px;
		border: 1px solid #ccc;
		border-radius: 4px 0 0 4px;
		outline: none;
		resize: none;
		height: 100px;
	}

	.input-group button {
		height: 122px;
		padding: 10px 20px;
		font-size: 18px;
		border: none;
		border-radius: 0 4px 4px 0;
		background-color: #007bff;
		color: white;
		cursor: pointer;
		transition: background-color 0.3s;
	}

		.input-group button:hover {
			background-color: #0056b3;
		}

.file-upload {
	margin-bottom: 20px;
}

/* Response Section */
.responseTxt {
	padding: 15px;
	font-size: 14px;
	border: 1px solid #ccc;
	background-color: #f9f9f9;
	height: 300px;
	overflow: auto;
}

.responseImg {
	display: flex;
	justify-content: center;
	max-height: 300px;
	width: 100%;
	height: 100%;
	overflow: auto;
	border: 1px solid #ccc;
	margin: 5px 0px;
}

.responseImgSuccess {
	display: block !important;
	overflow: scroll !important;
}

/* Status Section */
.status_container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

#status_image {
	max-height: 50px;
	max-width: 50px;
}

#placeholderImg {
	width: 250px;
}

/* Tab Section */
.tab-container {
	display: flex;
	flex-direction: column;
	margin: 10px auto;
}

.tab-link.active {
	background-color: #fff;
	color: #333;
}

.tab-buttons {
	display: flex;
}

	.tab-buttons button {
		flex: 1;
		padding: 10px;
		cursor: pointer;
		border: 1px solid #ccc;
		border-bottom: none;
		background-color: #f1f1f1;
	}

		.tab-buttons button.active {
			background-color: #fff;
			border-bottom: 1px solid #fff;
		}

.tab-content {
	border: 1px solid #ccc;
	padding: 20px;
	display: none;
}

	.tab-content.active {
		display: block;
	}

/* Utility Styles */
.disabled {
	pointer-events: none;
	opacity: 0.5;
	user-select: none;
}

/* Footer */
footer {
	display: flex;
	justify-content: center;
}

.app-version {
	color: gray;
}

/* Loading Section */
.loading_container {
	display: none;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.loading_animation {
	max-height: 50px;
	max-width: 50px;
}