@charset "utf-8";
body {
	background-color: #121212;
	color: #00ff66;
	font-family: monospace;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
}
.panel {
	border: 2px solid #00ff66;
	padding: 20px 40px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
}
button {
	background: #00ff66;
	color: #121212;
	border: none;
	padding: 12px 24px;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	margin: 10px;
	border-radius: 4px;
}
button:disabled {
	background: #444;
	color: #888;
	cursor: not-allowed;
}
#status {
	margin-top: 15px;
	font-size: 14px;
	color: #888;
}