.hl2go-import-form {
	max-width: 800px;
}

#hl2go-import-progress {
	margin-top: 20px;
}

.progress-bar {
	width: 100%;
	height: 20px;
	background-color: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background-color: #2271b1;
	width: 0%;
	transition: width 0.3s ease;
}

.progress-text {
	margin-top: 10px;
	font-weight: 600;
}

/* Imported images gallery styles */
.hl2go-imported-images {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 20px 0;
	clear: both;
}

.hl2go-imported-images .hl2go-image-thumbnail {
	display: inline-block;
	flex: 0 0 auto;
	max-width: 300px;
	text-decoration: none;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hl2go-imported-images .hl2go-image-thumbnail:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.hl2go-imported-images .hl2go-image-thumbnail img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	border: none;
}

