#filemanager {
	background: #f5f5f5;
	border: 1px solid #ccc;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 16px;
	font-family: sans-serif;
}

.fileicon {
	width: 100px;
	text-align: center;
	cursor: pointer;
}

.fileicon img {
	width: 64px;
	height: 64px;
	object-fit: contain;
	border-radius: 8px;
	background: #fff;
	padding: 4px;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.fileicon div {
	margin-top: 6px;
	font-size: 12px;
	word-break: break-word;
	color: #333;
}
.fileicon:hover {
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 8px;
}
