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

.container {
	max-width: 600px;
	width: 90%;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	background-color: #1e1e1e;
	border-radius: 8px;
}

h1 {
	text-align: center;
	margin-bottom: 20px;
}

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

input[type="file"],
input[type="text"] {
	padding: 8px;
	border: none;
	border-radius: 4px;
	background-color: #2c2c2c;
	color: #fff;
}

button {
	padding: 10px;
	border: none;
	border-radius: 4px;
	background-color: #4caf50;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

button:disabled {
	background-color: #777;
	cursor: not-allowed;
}

#loader {
	margin-top: 10px;
	font-size: 0.9rem;
	color: #aaa;
}

.hidden {
	display: none;
}

#fileList {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
}

.file-tile {
	padding: 12px;
	border-radius: 6px;
	background-color: #2a2a2a;
	transition: background-color 0.2s ease;
	cursor: pointer;
	border: 1px solid #333;
}

.file-tile:hover {
	background-color: #3a3a3a;
}

.file-tile small {
	display: block;
	font-size: 0.8rem;
	color: #aaa;
	margin-top: 4px;
}