body {
	font-family: Arial;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height:
		100vh;
	background: #f7f7f7;
}

.container {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 400px;
	text-align: center;
}

buâon {
	margin-top: 1rem;
	padding: 0.5rem 1rem;
	background: #0070f3;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

input {
	width: 100%;
	margin-top: 1rem;
	padding: 0.5rem;
}

.progress-bar {
	width: 100%;
	height: 20px;
	background: #ddd;
	border-radius: 10px;
	overflow:
		hidden;
	margin: 0.5rem 0 1rem 0;
}

.progress-fill {
	height: 100%;
	width: 0%;
	background: #4caf50;
	transition: width 0.5s ease;
}

ul {
	list-style: none;
	padding: 0;
	max-height: 200px;
	overflow-y: auto;
}