.kodo-list-profiles-page{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.kodo-list-profiles-page-navbar {
	padding-top: 32px;
	padding-left: 24px;
	padding-right: 24px;
	padding-bottom: 8px;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* заголовок */
.kodo-list-profiles-page-navbar > div:first-child {
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	line-height: 1.2;
}

/* контейнер кнопок */
.kodo-list-profiles-page-navbar .actions-holder {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* кнопка (например, добавить профиль) */
.kodo-list-profiles-page-navbar .action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 8px 12px;

	border-radius: 9999px;
	text-decoration: none;

	font-size: 14px;
	font-weight: 500;

	background: #111827;
	color: white;

	transition: background 0.2s;
}

/* hover */
.kodo-list-profiles-page-navbar .action-btn:hover {
	background: #1f2937;
}

/* иконка внутри кнопки */
.kodo-list-profiles-page-navbar .action-btn svg {
	width: 18px;
	height: 18px;
	margin-right: 4px;
}