.manual-categories {
    padding: 10px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

span.manual-categories__count {
    display: none !important;
}

.manual-categories__list {
	display: flex;
	align-items: stretch;
	flex-wrap: nowrap;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	width: 100%;
	scrollbar-gutter: stable;
	padding-bottom: 4px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(185, 147, 255, .55) rgba(255, 255, 255, .04);
}

.manual-categories__list::-webkit-scrollbar {
	height: 10px;
}

.manual-categories__list::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, .04);
	border-radius: 999px;
}

.manual-categories__list::-webkit-scrollbar-thumb {
	background: rgba(185, 147, 255, .45);
	border: 2px solid rgba(255, 255, 255, .04);
	border-radius: 999px;
}

.manual-categories__list::-webkit-scrollbar-thumb:hover {
	background: rgba(185, 147, 255, .65);
}

.manual-categories__btn {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	color: #c7d2fe;
	border-radius: 999px;
	box-sizing: border-box;
	min-height: 38px;
	padding: 9px 14px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.manual-categories__btn:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.14);
	color: #eef2ff;
}

.manual-categories__btn.is-active {
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(34, 197, 94, 0.18));
	border-color: rgba(56, 189, 248, 0.45);
	color: #f8fafc;
	box-shadow: 0 10px 24px rgba(14, 165, 233, 0.14);
}

.manual-categories__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 6px;
	margin-left: 8px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.42);
	font-size: 11px;
	font-weight: 800;
	color: #dbeafe;
}

@media (max-width: 900px) {
	.manual-categories {
		padding-top: 6px;
		padding-bottom: 12px;
	}

	.manual-categories__btn {
		min-height: 36px;
		padding: 8px 12px;
		font-size: 12px;
	}
}