.pr-64c51333-container {
	position: relative;
	padding-left: 50px;
	margin: 20px 0;
}

.pr-64c51333-container::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #e2e8f0;
}

.pr-64c51333-item {
	position: relative;
	margin-bottom: 40px;
}

.pr-64c51333-item:last-child {
	margin-bottom: 0;
}

.pr-64c51333-icon-wrapper {
	position: absolute;
	left: -50px;
	top: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid #cbd5e1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	z-index: 2;
	transition: all 0.3s ease;
}

.pr-64c51333-icon-wrapper i {
	font-size: 16px;
}

.pr-64c51333-icon-wrapper svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

/* Status: Done */
.pr-64c51333-item[data-status="done"] .pr-64c51333-icon-wrapper {
	background-color: #10b981;
	border-color: #10b981;
	color: #ffffff;
}
.pr-64c51333-item[data-status="done"] .pr-64c51333-icon-wrapper svg {
	fill: #ffffff;
}

/* Status: Active */
.pr-64c51333-item[data-status="active"] .pr-64c51333-icon-wrapper {
	border-color: #3b82f6;
	color: #3b82f6;
	background-color: #eff6ff;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}
.pr-64c51333-item[data-status="active"] .pr-64c51333-icon-wrapper svg {
	fill: #3b82f6;
}

/* Status: Pending */
.pr-64c51333-item[data-status="pending"] .pr-64c51333-content {
	opacity: 0.6;
}

.pr-64c51333-content {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.pr-64c51333-item:hover .pr-64c51333-content {
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.pr-64c51333-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	flex-wrap: wrap;
	gap: 10px;
}

.pr-64c51333-title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #1e293b;
}

.pr-64c51333-badge {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 4px 8px;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Badge colors */
.pr-64c51333-item[data-status="done"] .pr-64c51333-badge {
	background-color: #d1fae5;
	color: #065f46;
}

.pr-64c51333-item[data-status="active"] .pr-64c51333-badge {
	background-color: #dbeafe;
	color: #1e40af;
}

.pr-64c51333-item[data-status="pending"] .pr-64c51333-badge {
	background-color: #f1f5f9;
	color: #475569;
}

.pr-64c51333-desc {
	margin: 0;
	color: #64748b;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
	.pr-64c51333-container {
		padding-left: 40px;
	}
	
	.pr-64c51333-container::before {
		left: 15px;
	}
	
	.pr-64c51333-icon-wrapper {
		left: -40px;
		width: 32px;
		height: 32px;
	}
	
	.pr-64c51333-icon-wrapper i,
	.pr-64c51333-icon-wrapper svg {
		font-size: 14px;
		width: 14px;
		height: 14px;
	}
	
	.pr-64c51333-content {
		padding: 16px;
	}
}