body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f3f3f3;
	color: #333;
	padding: 20px;
	text-align: center;
}
.container {
	max-width: 600px; /* Wider container */
	width: 90%; /* Responsive */
	min-height: 80vh; /* Increased height */
	margin: 20px auto; /* Centered */
	background: white;
	padding: 30px; /* More padding */
	border-radius: 10px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between; /* Better spacing */
}
button {
	background-color: #0078d4;
	color: white;
	border: none;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}
button:hover {
	background-color: #005a9e;
}
.box {
	border: 2px solid #0078d4;
	padding: 20px;
	border-radius: 10px;
	background: #f9f9f9;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	width: 100%; /* Make sure it fits inside the container */
	max-width: 550px; /* Slightly smaller than the container */
	min-height: 180px; /* Increase height slightly */
	margin: 0 auto; /* Center it */
	box-sizing: border-box; /* Include padding/border in width */
}
.box:hover {
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
	background: #ffffff;
}
.box textarea {
	width: calc(100% - 20px);
	max-width: 100%;
	resize: none;
	overflow-x: hidden;
}
.disabled {
	opacity: 0.5;
	pointer-events: none;
}
input, select, textarea {
	width: 100%;
	padding: 10px;
	margin: 5px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
}
.footer {
	margin-top: 20px;
	font-size: 14px;
	color: #555;
}
.footer a {
	margin: 0 10px;
	text-decoration: none;
	color: #0078d4;
	font-size: 18px;
}
.footer a:hover {
	color: #005a9e;
}
.status {
	font-weight: bold;
}
.status.success {
	color: green;
}
.status.failure {
	color: red;
}
.status.connected {
	color: blue;
}
.status.disconnected {
	color: red;
}
