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

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

.usb-icon {
	width: 50px;
	margin-bottom: 10px;
}

.actions button {
	margin: 10px 5px;
	padding: 10px 20px;
	border: none;
	background-color: #007bff;
	color: white;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.3s;
}

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

.output {
	text-align: left;
	margin-top: 20px;
	background-color: #f0f0f0;
	padding: 10px;
	border-radius: 6px;
	max-height: 150px;
	overflow-y: auto;
}