.hsm-2054-container {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}

.hsm-2054-container::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}

.hsm-2054-list {
	display: flex;
	flex-wrap: nowrap;
	margin: 0;
	padding: 0;
	list-style: none;
	width: max-content;
	min-width: 100%;
	gap: 30px;
	border-bottom: 1px solid #E2E8F0; /* Light gray border for the track */
}

.hsm-2054-item {
	margin: 0;
	padding: 0;
	flex-shrink: 0;
}

.hsm-2054-link {
	display: block;
	padding: 15px 0;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
	font-weight: 500;
	white-space: nowrap;
}

.hsm-2054-link::after {
	content: '';
	position: absolute;
	bottom: -1px; /* Overlap the container border */
	left: 0;
	width: 100%;
	height: 2px;
	background-color: transparent;
	transition: background-color 0.3s ease;
}

.hsm-2054-link.active::after {
	background-color: #16C098; /* Default active underline color */
}
