body { margin: 0; padding: 0; }

/* Drag and Drop Styles */
.draggable-task {
	cursor: move;
	transition: all 0.2s ease;
}

.draggable-task:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.draggable-task.dragging {
	opacity: 0.5;
	transform: rotate(5deg);
	z-index: 1000;
}

.drop-zone {
	transition: all 0.2s ease;
}

.drop-zone.drag-over {
	background-color: #e0f2fe;
	border-color: #0284c7;
	transform: scale(1.02);
}

.drag-handle {
	cursor: grab;
	color: #6b7280;
	font-size: 16px;
	padding: 4px;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.drag-handle:hover {
	background-color: #f3f4f6;
	color: #374151;
}

.drag-handle:active {
	cursor: grabbing;
}

.task-order-indicator {
	background-color: #f3f4f6;
	color: #6b7280;
	font-size: 12px;
	font-weight: bold;
	padding: 2px 6px;
	border-radius: 12px;
	min-width: 20px;
	text-align: center;
}


