.hotpoint > span:after,
.hotpoint > button:after,
.hotpoint > a:after {
	content: '🔥';
	font-size: 0.75rem;
	margin-left: 5px;
}

.custom-actions-nav {
	display: flex;
	align-items: center;
	gap: 0.75rem
}
.custom-actions-nav:before {
	content: "Endpoint:";
	font-weight: 600;
}

.custom-actions-nav ul.chips-list {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	margin: 0 !important;
	list-style: none;
	border-radius: 12px;
	flex-direction: row;
	background-color: var(--bg-secondary);
	border: 1px solid var(--border-primary);
}

.custom-actions-nav .chips-list li {
	display: flex;
}

.custom-actions-nav .chip {
	display: inline-block;
	padding: 8px 18px;
	font-size: 15px;
	font-weight: 500;
	color: #9a9a9a;
	text-decoration: none;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 8px;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.custom-actions-nav .chip:hover {
	color: #555;
}

.custom-actions-nav .chip--active {
	color: #1a1a1a;
	font-weight: 500;
	background-color: #D8E6B7;
	border-color: #C2E178;
}

[data-theme="dark"] .custom-actions-nav .chip--active {
	color: rgba(178, 221, 76, 0.8);
	font-weight: 500;
	background-color: var(--lime-160);
	border-color: rgba(178, 221, 76, 0.5);
}

.custom-actions-nav .chip--active:hover {
	color: #1a1a1a;
}

.has-children-menu button svg {
	display: none;
}

.has-children-menu button.sidebar__nav-submenu-link--current {
	color: var(--lime-900);
}