.invalid-feedback
{
	    font-size: .675em;
}

.sortable-shadow
{
	background:#f5f7fa;
	border:2px dashed #b8c2cc;
	box-shadow:inset 0 0 0 2px rgba(0,0,0,0.05);
}

.sortable-shadow td
{
	padding:0;
}

.modal-fullscreen
{
	width: 100% !important;
	max-width: 100% !important;
	min-width:100% !important;
	height: 100% !important;
	min-height: 100% !important;
	max-height:100% !important;
	margin:0 !important;
}
.modal-noaction .modal-footer
{
	display: none !important;
}

.lead-attribute-value
{
	font-size: 14px;
	font-weight: 500;
}

.pipeline-steps
{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 10px 0;
}

.pipeline-step
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	min-width: 80px;
}

.pipeline-step-indicator
{
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	color: #94a3b8;
	transition: all 0.2s ease;
}

.pipeline-step.active .pipeline-step-indicator
{
	background: var(--primary, #3b82f6);
	border-color: var(--primary, #3b82f6);
	color: #fff;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.pipeline-step.completed .pipeline-step-indicator
{
	background: #22c55e;
	border-color: #22c55e;
	color: #fff;
}

.pipeline-step-label
{
	font-size: 12px;
	font-weight: 500;
	color: #64748b;
	text-align: center;
	white-space: nowrap;
}

.pipeline-step.active .pipeline-step-label
{
	color: var(--primary, #3b82f6);
	font-weight: 600;
}

.pipeline-step.completed .pipeline-step-label
{
	color: #22c55e;
}

.pipeline-step-connector
{
	flex: 1;
	height: 2px;
	background: #e2e8f0;
	min-width: 30px;
	max-width: 60px;
	margin-bottom: 28px;
}

.pipeline-step-connector.completed
{
	background: #22c55e;
}

@media (max-width: 768px)
{
	.pipeline-steps
	{
		flex-wrap: wrap;
		gap: 10px;
	}

	.pipeline-step
	{
		min-width: 60px;
	}

	.pipeline-step-connector
	{
		display: none;
	}

	.pipeline-step-label
	{
		font-size: 10px;
	}
}

.sidebar-note-item
{
	padding: 10px;
	background: var(--gray-50, #f8fafc);
	border-radius: 8px;
	margin-bottom: 10px;
}

.sidebar-note-item.pinned
{
	background: #eff6ff;
	border-left: 3px solid var(--primary, #3b82f6);
}

.sidebar-note-header
{
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
}

.sidebar-note-author
{
	font-size: 12px;
	font-weight: 600;
	color: var(--gray-700, #334155);
}

.sidebar-note-time
{
	font-size: 11px;
	color: var(--gray-400, #94a3b8);
	margin-left: auto;
}

.sidebar-note-content
{
	font-size: 13px;
	color: var(--gray-600, #475569);
	line-height: 1.5;
}

.detail-tab-trigger
{
	cursor: pointer;
}

.lead-attributes-grid
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
} 

@media (max-width: 576px)
{
	.lead-attributes-grid
	{
		grid-template-columns: 1fr;
	}
} 

.badge-selector
{
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.badge-selector-label
{
	font-size: 11px;
	font-weight: 600;
	color: var(--gray-400, #94a3b8);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.badge-selector-dropdown
{
	display: block;
	width: 100%;
}

.badge-selector-btn
{
	width: 100%;
	padding: 10px 14px;
	border-radius: 10px;
	border: none;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.badge-selector-btn:hover
{
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.badge-selector-btn:active
{
	transform: translateY(0);
}

.badge-selector-btn::after
{
	border: none;
	content: "\F282";
	font-family: "bootstrap-icons";
	font-size: 10px;
	opacity: 0.7;
	margin: 0;
}

.badge-selector-btn.show::after
{
	content: "\F286";
}

.badge-selector-dropdown .dropdown-menu
{
	width: 100%;
	min-width: 200px;
	padding: 8px;
	border-radius: 12px;
	border: none;
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
	margin-top: 4px;
}

.badge-selector-dropdown .dropdown-item
{
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--gray-700, #334155);
	transition: all 0.15s ease;
}

.badge-selector-dropdown .dropdown-item:hover
{
	background: var(--gray-50, #f8fafc);
	transform: translateX(2px);
}

.badge-selector-dropdown .dropdown-item.active
{
	background: var(--gray-100, #f1f5f9);
	font-weight: 600;
}

.badge-selector-dropdown .dropdown-item.active::after
{
	content: "\F26B";
	font-family: "bootstrap-icons";
	font-size: 12px;
	margin-left: auto;
	color: var(--success, #22c55e);
}

.badge-selector-color-dot
{
	width: 12px;
	height: 12px;
	border-radius: 4px;
	flex-shrink: 0;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}