.upload-box {
	border: 1px solid #e2e8f0;
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	max-width: 700px;
	margin: 0 auto;
}

.upload-box h3 {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 600;
}

.drop-area {
	border: 2px dashed #cbd5e1;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	color: #64748b;
	background: #f8fafc;
	cursor: pointer;
	transition: background 0.2s ease-in-out;
	display: flex;
	flex-direction: column;
	gap: 10px;
}


.drop-area.highlight {
	background-color: #e2e8f0;
}

#drop-text {
	margin-bottom: 15px;
}

.preview {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}

.preview-item {
	position: relative;
	width: 100px;
	height: 100px;
	background: #e5e7eb;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 12px;
	color: #111827;
	overflow: hidden;
}

.preview-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.preview-item span {
	margin-top: 4px;
	font-size: 11px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-width: 90px;
	text-align: center;
}

.remove-button {
	position: absolute;
	top: 6px;
	right: 6px;
	background: #111827;
	color: white;
	border: none;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: background 0.2s ease;
}

.remove-button:hover {
	background: #ef4444;
}

.progress-bar {
	width: 100%;
	background: #e2e8f0;
	border-radius: 6px;
	margin-top: 20px;
	overflow: hidden;
	height: 14px;
	display: none;
}

.progress {
	height: 100%;
	width: 0%;
	background-color: #10b981;
	transition: width 0.3s;
}

input[type="file"] {
	display: none;
}

button#uploadBtn {
	margin-top: 20px;
	padding: 8px 20px;
	background-color: #10b981;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
}

button#uploadBtn:disabled {
	background-color: #9ca3af;
	cursor: not-allowed;
}