body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f9;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.container {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 500px;
}

h1 {
	text-align: center;
	color: #333;
}

.form-group {
	margin-bottom: 15px;
}

label {
	display: block;
	margin-bottom: 5px;
	color: #555;
}

input[type="text"] {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
}

.checkbox-group {
	display: flex;
	align-items: center;
}

.checkbox-group input {
	margin-right: 10px;
}

button {
	width: 100%;
	padding: 10px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

button:hover {
	background-color: #0056b3;
}

.result {
	margin-top: 20px;
	text-align: center;
}

.error {
	color: #dc3545;
	font-weight: bold;
}

.success {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.success a {
	color: #007bff;
	text-decoration: none;
}

.success a:hover {
	text-decoration: underline;
}

.copy-btn {
	background-color: #28a745;
	color: white;
	border: none;
	padding: 5px 10px;
	border-radius: 4px;
	cursor: pointer;
}

.copy-btn:hover {
	background-color: #218838;
}