.bodytx {
	
	line-height: 1.6;
}

.container {
	background-color: #f9f9f9;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bodytx h1 {
	color: #333;
	text-align: center;
}

.input-group {
	margin-bottom: 20px;
}

.bodytx label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.bodytx input[type="text"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
}

.bodytx select {
	padding: 8px;
	border-radius: 4px;
	border: 1px solid #ddd;
	font-size: 16px;
}

.bodytx button {
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 10px 0;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.bodytx button:hover {
	background-color: #45a049;
}

#barcode-container {
	text-align: center;
	margin-top: 20px;
	padding: 20px;
	background-color: white;
	border-radius: 4px;
	border: 1px solid #ddd;
}

.bodytx svg {
	max-width: 100%;
}

.options {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.option-group {
	flex: 1;
	min-width: 200px;
}