/* Drag & Drop Upload Styles */
.drag-drop-area {
	position: relative;
	transition: all 0.3s ease;
	border-radius: 0.5rem;
}

.drag-drop-area.drag-active {
	background-color: rgba(59, 130, 246, 0.1);
	border: 2px dashed #3b82f6;
	transform: scale(1.02);
}

.drag-drop-button {
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.drag-drop-area.drag-active .drag-drop-button {
	background-color: #3b82f6 !important;
	color: white !important;
	border-color: #3b82f6 !important;
}

.drag-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(59, 130, 246, 0.9);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	pointer-events: none;
}

.drag-overlay-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
	text-align: center;
	gap: 0.5rem;
}

.drag-overlay-icon {
	width: 2rem;
	height: 2rem;
	stroke-width: 2;
}

.drag-overlay span {
	font-size: 0.875rem;
	font-weight: 500;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	.drag-drop-area.drag-active {
		background-color: rgba(59, 130, 246, 0.2);
		border-color: #60a5fa;
	}

	.drag-overlay {
		background-color: rgba(59, 130, 246, 0.95);
	}
}

/* Responsive adjustments */
@media (max-width: 640px) {
	.drag-overlay-icon {
		width: 1.5rem;
		height: 1.5rem;
	}

	.drag-overlay span {
		font-size: 0.75rem;
	}
}
