body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 20px;
	background-color: #f3f3f3;
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}
h1 {
	margin-bottom: 20px;
	color: #0078d4;
}
label {
	margin-top: 10px;
	font-size: 16px;
}
input {
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 300px;
	font-size: 16px;
}
button {
	padding: 10px 20px;
	margin: 10px 5px;
	font-size: 16px;
	color: white;
	background-color: #0078d4;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;
}
button:hover:enabled {
	background-color: #005a9e;
}
button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}
#output {
	margin-top: 20px;
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #fff;
	width: 80%;
	max-width: 600px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#progress-container {
	width: 100%;
	max-width: 600px;
	margin-top: 20px;
}
#progress-bar {
	width: 0%;
	height: 20px;
	background-color: #0078d4;
	border-radius: 5px;
	transition: width 0.3s ease;
}
#progress-wrapper {
	width: 100%;
	background-color: #e1e1e1;
	border-radius: 5px;
	overflow: hidden;
}
#stats {
	margin-top: 10px;
	font-size: 14px;
	color: #555;
}
footer {
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
	color: #666;
}
footer a {
	margin: 0 10px;
	color: #0078d4;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}
footer a:hover {
	text-decoration: underline;
}
footer img {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}
