/* Container yang membatasi ruang untuk marquee */
.simple-marquee-container {
	display: flex;
	align-items: center;
	overflow: hidden;
	white-space: nowrap;
	background-color: #f1f1f1;
	padding: 10px;
	border-radius: 5px;
}

.marquee-sibling {
	margin-right: 10px;
}

.marquee {
	flex: 1;
	overflow: hidden;
	position: relative;
}

.marquee-content-items {
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
	animation: marquee 15s linear infinite;
	white-space: nowrap;
	/* Menghindari teks terpotong */
}

.marquee-content-items li {
	display: inline-block;
	padding-right: 100px;
	/* Jarak antar teks */
	font-size: 1.2em;
	color: #333;
}

@keyframes marquee {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}