.sicx-category-circles {
	display: flex;
	justify-content: center; /* Zorgt dat de eerste cirkel aan de linkerkant blijft */
	flex-wrap: wrap;
	gap: 15px; /* Afstand tussen de cirkels */
	margin-bottom: 30px;
}

.sicx-category-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 150px; /* Breedte van een container */
}

.sicx-category-circle {
	width: 140px; /* Cirkel iets groter maken */
	height: 140px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #ddd;
	transition: all 0.3s ease;
	padding: 10px; /* Ruimte binnen de cirkel toevoegen */
	background-color: #fff; /* Achtergrondkleur toevoegen */
}

.sicx-category-circle img {
	width: auto;
	height: 95% !important;
	object-fit: cover;
	border-radius: 50%;
}

.sicx-category-title {
	margin-top: 5px;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	text-align: center;
	max-width: 200px;
	word-wrap: break-word;
	line-height: 1;
}

/* 📱 Mobiele weergave: horizontaal scrollen & geen afgesneden cirkels */
.sicx-category-circles {
	display: flex;
	justify-content: flex-start; /* Zorgt dat de eerste cirkel aan de linkerkant blijft */
	flex-wrap: nowrap; /* Voorkomt dat items onder elkaar komen */
	overflow-x: auto; /* Zorgt voor horizontaal scrollen */
	-webkit-overflow-scrolling: touch; /* Soepel scrollen op mobiel */
	gap: 10px;
	padding-bottom: 0px; /* Ruimte onderaan voor scrollbalk */
	margin-bottom: 0px;
	scrollbar-width: none; /* Verbergt de scrollbar op Firefox */
	white-space: nowrap; /* Voorkomt dat de items in elkaar schuiven */
	padding-left: 10px; /* Voorkomt dat de eerste cirkel wordt afgesneden */
	padding-right: 10px; /* Voorkomt dat de laatste cirkel wordt afgesneden */
}

/* Verbergt de standaard scrollbar in WebKit-browsers (Chrome, Safari, etc.) */
.sicx-category-circles::-webkit-scrollbar {
	display: none;
}

.sicx-category-container {
	flex: 0 0 auto; /* Voorkomt dat de items kleiner worden */
	white-space: normal; /* Zorgt ervoor dat de titels goed afbreken */

}
