.kodo-profiles-list-panel .section-title {
	font-size:12px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:0.08em;
	color:#9ca3af;
	margin:24px 0 8px 24px;
}

.kodo-profiles-list-panel .children-list {
	padding:0 16px;
	display:flex;
	flex-direction:column;
	gap:16px;
}

.kodo-profiles-list-panel .child-card {
	display:flex;
	align-items:stretch;
	justify-content:space-between;
	background:#fff;
	border-radius:2rem;
	border:1px solid #fff;
	box-shadow:0 1px 2px rgba(0,0,0,0.05);
	overflow:hidden;
}

.kodo-profiles-list-panel .child-main {
	flex:1;
	display:flex;
	align-items:center;
	gap:16px;
	padding:16px 16px 16px 20px;
	cursor:pointer;
}

.kodo-profiles-list-panel .child-avatar {
	width:56px;
	height:56px;
	border-radius:50%;
	background:#f6efe6;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:30px;
	box-shadow:inset 0 2px 4px rgba(0,0,0,0.1);
}

.kodo-profiles-list-panel .child-name-row {
	display:flex;
	align-items:center;
	gap:8px;
}

.kodo-profiles-list-panel .child-name {
	font-size:18px;
	font-weight:700;
	color:#111827;
	margin:0;
}

.kodo-profiles-list-panel .premium-icon {
	width:16px;
	height:16px;
	color:#f59e0b;
}

.kodo-profiles-list-panel .child-arrow {
	margin-left:auto;
	padding:4px;
	margin-right:8px;
	color:#d1d5db;
}

.kodo-profiles-list-panel .child-arrow svg {
	width:24px;
	height:24px;
}

.kodo-profiles-list-panel .child-status {
	margin-left:auto;
	margin-right:8px;
	background:#dcfce7;
	color:#16a34a;
	padding:4px;
	border-radius:50%;
}

.kodo-profiles-list-panel .child-actions {
	display:flex;
	flex-direction:column;
	border-left:1px solid #f3f4f6;
	justify-content: space-evenly;
}

.kodo-profiles-list-panel .action-btn {
	padding:16px;
	background:none;
	border:none;
	color:#9ca3af;
	cursor:pointer;
	transition:background .2s,color .2s;
}

.kodo-profiles-list-panel .action-btn svg {
	width:20px;
	height:20px;
}

.kodo-profiles-list-panel .edit-btn:hover {
	background:#f9fafb;
	color:#3b82f6;
}

.kodo-profiles-list-panel .delete-btn:hover {
	background:#fef2f2;
	color:#ef4444;
}

.kodo-profiles-list-panel .action-divider {
	width:100%;
	height:1px;
	background:#f3f4f6;
}

.kodo-profiles-list-panel .add-child {
	width:100%;
	min-height:100px;
	border:2px dashed #d1d5db;
	border-radius:2rem;
	padding:16px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:8px;
	background:#fff;
	color:#9ca3af;
	cursor:pointer;
	transition:all .2s;
	text-decoration: none;
}

.kodo-profiles-list-panel .add-icon {
	background:#f3f4f6;
	padding:12px;
	border-radius:50%;
	transition:background .2s;
	height: 3rem;
	width: 3rem;
}

.kodo-profiles-list-panel .add-icon svg {
	width:24px;
	height:24px;
}

.kodo-profiles-list-panel .add-label {
	font-weight:700;
}

.kodo-profiles-list-panel .add-child:hover {
	border-color:#fcd34d;
	background:#fffbeb;
	color:#f59e0b;
}

.kodo-profiles-list-panel .add-child:hover .add-icon {
	background:#fff;
}

.kodo-profiles-list-card-delete-btn-holder,
.kodo-profiles-list-card-edit-btn-holder,
.kodo-profiles-list-card-main-btn-holder{
	display: flex;
}
.kodo-profiles-list-card-delete-btn-holder a,
.kodo-profiles-list-card-edit-btn-holder a,
.kodo-profiles-list-card-main-btn-holder a{
	text-decoration: none;
}
.kodo-profiles-list-card-main-btn-holder{
	flex: 1 1 0%;
}
.kodo-profiles-list-card-main-btn-holder a{
    display: flex;
    width: 100%;
}


/*  Диалог удаления  */

.kodo-profiles-list-delete-dialog-question {
	position:fixed;
	inset:0;
	z-index:100;

	display:flex;
	align-items:center;
	justify-content:center;
	padding:16px;

	background:rgba(17,24,39,0.4);
	backdrop-filter:blur(6px);
}

.kodo-profiles-list-delete-dialog-question.d-none {
	display:none;
}

.kodo-profiles-list-delete-dialog-question .card {
	max-width: 24rem;
	width: 100%;
	background: #ffffff;
	border-radius: 2rem;
	padding: 2rem;
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	animation: kodoDialogZoomIn .2s ease;
}

@keyframes kodoDialogZoomIn {
	from {
		transform: scale(.95);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.kodo-profiles-list-delete-dialog-question .card-icon-holder {
	width: 4rem;
	height: 4rem;
	background: #fef2f2;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: #ef4444;
}

.kodo-profiles-list-delete-dialog-question .card-icon-holder svg {
	width: 2rem;
	height: 2rem;
}

.kodo-profiles-list-delete-dialog-question .card-body > div {
	font-size: 1.5rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: .75rem;
}

.kodo-profiles-list-delete-dialog-question .warning-text {
	color: #6b7280;
	margin-bottom: 2rem;
	line-height: 1.625;
	font-weight: 500;
}

.kodo-profiles-list-delete-dialog-question .card-footer {
	display: flex;
	gap: 1rem;
	width: 100%;
}

.kodo-profiles-list-delete-dialog-question koi-idbutton {
	flex: 1;
	display: block;
}

.kodo-profiles-list-delete-dialog-question button {
	width: 100%;
	font-weight: 700;
	padding: .875rem 0;
	border-radius: .75rem;
	border: none;
	transition: background-color .2s ease, box-shadow .2s ease;
	cursor: pointer;
}

.kodo-profiles-list-delete-dialog-question .koi-dialog-question-second-btn button {
	background: #f3f4f6;
	color: #374151;
}

.kodo-profiles-list-delete-dialog-question .koi-dialog-question-second-btn button:hover {
	background: #e5e7eb;
}

.kodo-profiles-list-delete-dialog-question .koi-dialog-question-first-btn button {
	background: #ef4444;
	color: #ffffff;
	box-shadow: 0 10px 15px -3px rgba(239,68,68,0.3);
}

.kodo-profiles-list-delete-dialog-question .koi-dialog-question-first-btn button:hover {
	background: #dc2626;
}
