.cca-wrapper-194bc889 {
	display: flex;
	flex-direction: column;
}
.cca-lesson {
	border: 1px solid #e2e8f0;
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}
.cca-lesson-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	cursor: pointer;
	background: #1e293b;
	color: #fff;
}
.cca-lesson-header-left {
	display: flex;
	align-items: center;
	gap: 15px;
}
.cca-lesson-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	border: 2px solid transparent;
}
.cca-status-pending .cca-lesson-icon {
	background-color: #94a3b8;
	color: #fff;
}
.cca-status-inprogress .cca-lesson-icon {
	background-color: #3b82f6;
	color: #fff;
}
.cca-status-completed .cca-lesson-icon {
	border-color: #38bdf8;
	color: #38bdf8;
}
.cca-lesson-title {
	margin: 0 0 5px;
	font-size: 16px;
	font-weight: 600;
	color: inherit;
}
.cca-lesson-meta {
	font-size: 12px;
	opacity: 0.8;
}
.cca-lesson-header-right i {
	transition: transform 0.3s ease;
}
.cca-lesson.is-open .cca-lesson-header-right i {
	transform: rotate(180deg);
}
.cca-lesson-content {
	display: none;
	padding: 15px 20px;
	border-top: 1px solid #e2e8f0;
}
.cca-topic-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.cca-topic-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #f1f5f9;
}
.cca-topic-list li:last-child {
	border-bottom: none;
}
.cca-empty-circle {
	width: 16px;
	height: 16px;
	border: 2px solid #cbd5e1;
	border-radius: 50%;
	display: inline-block;
}
.cca-topic-icon {
	width: 20px;
	display: flex;
	justify-content: center;
	color: #94a3b8;
}
.cca-topic-title {
	color: #334155;
	text-decoration: none;
	font-size: 14px;
}
.cca-topic-completed .cca-topic-title {
	text-decoration: line-through;
	opacity: 0.6;
}
.cca-topic-active .cca-topic-title {
	font-weight: bold;
}
