diff --git a/src/app/dashboard/agent-types/[id]/sections/page.tsx b/src/app/dashboard/agent-types/[id]/sections/page.tsx
index 9803e71..35e3a91 100644
--- a/src/app/dashboard/agent-types/[id]/sections/page.tsx
+++ b/src/app/dashboard/agent-types/[id]/sections/page.tsx
@@ -239,7 +239,7 @@ export default function AgentTypeSectionsPage() {
) : (
-
+
{sections.map((section, index) => (
handleDragStart(index)}
onDragOver={(e) => handleDragOver(e, index)}
onDragEnd={handleDragEnd}
- className={`px-6 py-4 flex items-center justify-between hover:bg-gray-50 cursor-move transition-colors ${
- draggedIndex === index ? 'bg-blue-50 border-2 border-blue-300 border-dashed' : ''
+ className={`bg-white rounded-lg shadow p-4 flex items-center justify-between hover:shadow-md cursor-move transition-all ${
+ draggedIndex === index ? 'ring-2 ring-blue-300 ring-offset-2 shadow-lg' : ''
}`}
>