.tl-wrapper-8e0cbc79 {
	--tl-color-accent: #008080;
	--tl-line-color: #e2e8f0;
	--tl-active-line-color: #008080;
	--tl-icon-bg: #cbd5e1;
	--tl-active-icon-bg: #008080;
	--tl-card-bg: #ffffff;
	--tl-card-border: #e2e8f0;
	--tl-card-radius: 12px;
	--tl-card-padding: 20px;
	--tl-detail-bg: #f8fafc;
	--tl-arrow-bg: #ffffff;
	--tl-arrow-color: #0f172a;
	--tl-title-color: #0f172a;
	--tl-desc-color: #475569;
	--tl-date-color: #ffffff;
	
	position: relative;
	width: 100%;
	font-family: inherit;
}

.tl-track-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 40px 0 20px;
}

.tl-wrapper-8e0cbc79.has-mobile-swipe .tl-track-container {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE/Edge */
}
.tl-wrapper-8e0cbc79.has-mobile-swipe .tl-track-container::-webkit-scrollbar {
	display: none; /* Chrome/Safari */
}

.tl-track {
	display: flex;
	position: relative;
	min-width: max-content;
	padding: 0 40px;
	gap: 30px;
}

/* Base line behind all nodes */
.tl-progress-line {
	position: absolute;
	top: 75px; /* Adjust based on node position */
	left: 40px;
	right: 40px;
	height: 4px;
	background: var(--tl-line-color);
	z-index: 1;
	border-radius: 2px;
}

.tl-item {
	position: relative;
	width: 280px;
	display: flex;
	flex-direction: column;
	align-items: center;
	scroll-snap-align: center;
	cursor: pointer;
	z-index: 2;
	transition: all 0.3s ease;
}

.tl-date-wrapper {
	height: 40px;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-end;
}

.tl-date-box {
	background: var(--tl-item-accent, var(--tl-color-accent));
	color: var(--tl-date-color);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	opacity: 0.8;
}

.tl-item.is-active .tl-date-box {
	opacity: 1;
	transform: scale(1.05);
}

.tl-node {
	width: 32px;
	height: 32px;
	background: var(--tl-icon-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease;
	z-index: 3;
	border: 4px solid var(--tl-card-bg); /* to break the line */
	box-shadow: 0 0 0 2px var(--tl-item-accent, var(--tl-color-accent));
}

.tl-node-icon {
	color: #ffffff;
	font-size: 14px;
}
.tl-node-icon svg {
	width: 14px;
	height: 14px;
	fill: #ffffff;
}

.tl-item.is-active .tl-node {
	background: var(--tl-item-accent, var(--tl-active-icon-bg));
	transform: scale(1.2);
}

.tl-content-card {
	background: var(--tl-item-bg, var(--tl-card-bg));
	border: 1px solid var(--tl-card-border);
	border-radius: var(--tl-card-radius);
	padding: var(--tl-card-padding);
	width: 100%;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.tl-item.is-active .tl-content-card {
	border-color: var(--tl-item-accent, var(--tl-color-accent));
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}

.tl-card-step {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--tl-item-accent, var(--tl-color-accent));
	margin-bottom: 8px;
	font-weight: 700;
}

.tl-card-title {
	font-size: 1.1rem;
	color: var(--tl-item-text, var(--tl-title-color));
	margin: 0 0 10px;
	line-height: 1.3;
}

.tl-card-desc {
	font-size: 0.9rem;
	color: var(--tl-item-text, var(--tl-desc-color));
	margin: 0 0 15px;
	line-height: 1.5;
}

.tl-status-label {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 4px;
	background: rgba(0,0,0,0.05);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--tl-item-text, var(--tl-title-color));
}

.tl-item.is-active .tl-status-label {
	background: var(--tl-item-accent, var(--tl-color-accent));
	color: #ffffff;
}

/* Arrows */
.tl-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--tl-arrow-bg);
	color: var(--tl-arrow-color);
	border: 1px solid var(--tl-card-border);
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.2s ease;
	outline: none;
}
.tl-arrow:hover {
	background: var(--tl-color-accent);
	color: #ffffff;
	border-color: var(--tl-color-accent);
}
.tl-arrow-prev { left: 0; }
.tl-arrow-next { right: 0; }

/* Detail Panel */
.tl-detail-panels {
	margin-top: 30px;
	width: 100%;
}

.tl-detail-panel {
	display: none;
	background: var(--tl-detail-bg);
	border: 1px solid var(--tl-card-border);
	border-radius: var(--tl-card-radius);
	padding: 30px;
	animation: fadeIn 0.4s ease;
}

.tl-detail-panel.is-active {
	display: block;
}

.tl-detail-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--tl-card-border);
}

.tl-detail-icon {
	width: 50px;
	height: 50px;
	background: var(--tl-color-accent);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	font-size: 20px;
}
.tl-detail-icon svg {
	width: 20px;
	height: 20px;
	fill: #ffffff;
}

.tl-detail-title {
	margin: 0 0 5px;
	color: var(--tl-title-color);
	font-size: 1.5rem;
}

.tl-detail-meta {
	font-size: 0.9rem;
	color: var(--tl-desc-color);
	font-weight: 600;
}

.tl-detail-desc {
	color: var(--tl-desc-color);
	line-height: 1.6;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
	.tl-item {
		width: 240px;
	}
	.tl-arrow {
		display: none;
	}
	.tl-track {
		padding: 0 20px;
	}
	.tl-progress-line {
		left: 20px;
		right: 20px;
	}
}
