﻿.drop-zone {
	width: 500px;
	height: 100px;
	display: grid;
	align-items: center;
	text-align: center;
	justify-content: center;
	background-color: white;
}

.back-diagonal {
	color: #666;
	background: repeating-linear-gradient( 45deg, transparent, #eee 20px );
}

.drop-zone-dragover {
	background: repeating-linear-gradient( 45deg, transparent, #ddd 20px );
}

#progressBar {
	width: 0%;
	height: 100%;
	background: #28a745;
	transition: width 0.2s;
}

#status {
	margin-top: 8px;
	font-size: 0.9rem;
	color: #333;
}
