.crc-org-wrap .crc-orgchart-app,
.crc-org-frontend .crc-orgchart-app {
	--crc-org-line: #c3c4c7;
	--crc-org-bg: #f6f7f7;
	max-width: 100%;
}

.crc-org-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 1rem 0;
}

.crc-org-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}

.crc-org-legend-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 12px;
}

.crc-org-legend-swatch {
	width: 12px;
	height: 12px;
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

.crc-org-zoom {
	display: flex;
	gap: 0.25rem;
}

.crc-org-hint {
	margin: 0 0 0.75rem;
}

.crc-org-status {
	min-height: 1.5em;
	margin-bottom: 0.5rem;
}

.crc-org-status.is-error {
	color: #b32d2e;
}

.crc-org-status.is-success {
	color: #00a32a;
}

.crc-org-viewport {
	overflow: auto;
	border: 1px solid var(--crc-org-line);
	border-radius: 4px;
	background: var(--crc-org-bg);
	min-height: 420px;
	max-height: 75vh;
	padding: 1.5rem;
}

.crc-org-canvas {
	transform-origin: top center;
	transition: transform 0.15s ease;
	display: inline-block;
	min-width: 100%;
	text-align: center;
}

.crc-org-root-drop {
	display: inline-block;
	margin: 0 auto 1.5rem;
	padding: 0.75rem 1.5rem;
	border: 2px dashed #8c8f94;
	border-radius: 8px;
	background: #fff;
	color: #50575e;
	font-size: 13px;
	transition: border-color 0.15s, background 0.15s;
}

.crc-org-root-drop.is-drop-target {
	border-color: #2271b1;
	background: #f0f6fc;
	color: #135e96;
}

.crc-org-tree {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	padding: 0;
	margin: 0;
	list-style: none;
}

.crc-org-tree ul {
	padding-top: 20px;
	position: relative;
	padding-left: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	list-style: none;
}

.crc-org-tree li {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding: 20px 8px 0;
}

/* Connectors */
.crc-org-tree li::before,
.crc-org-tree li::after {
	content: '';
	position: absolute;
	top: 0;
	width: 50%;
	height: 20px;
	border-top: 2px solid var(--crc-org-line);
}

.crc-org-tree li::before {
	right: 50%;
	border-right: 2px solid var(--crc-org-line);
}

.crc-org-tree li::after {
	left: 50%;
	border-left: 2px solid var(--crc-org-line);
}

.crc-org-tree li:only-child::before,
.crc-org-tree li:only-child::after {
	display: none;
}

.crc-org-tree li:first-child::before,
.crc-org-tree li:last-child::after {
	border: none;
}

.crc-org-tree ul > li:first-child::after {
	border-radius: 0;
}

.crc-org-tree > li {
	padding-top: 0;
}

.crc-org-tree > li::before,
.crc-org-tree > li::after {
	display: none;
}

.crc-org-tree ul::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	border-left: 2px solid var(--crc-org-line);
	width: 0;
	height: 20px;
}

.crc-org-node {
	position: relative;
	z-index: 1;
	min-width: 140px;
	max-width: 180px;
	padding: 10px 12px;
	border-radius: 8px;
	border: 2px solid transparent;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
	text-align: center;
	cursor: default;
	transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s;
}

.crc-org-node.is-draggable {
	cursor: grab;
}

.crc-org-node.is-draggable:active {
	cursor: grabbing;
}

.crc-org-node.is-dragging {
	opacity: 0.45;
	transform: scale(0.96);
}

.crc-org-node.is-drop-target {
	border-color: #2271b1;
	box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.25);
}

.crc-org-node-name {
	font-weight: 600;
	font-size: 13px;
	line-height: 1.3;
	margin-bottom: 4px;
	word-break: break-word;
}

.crc-org-node-level {
	font-size: 11px;
	opacity: 0.85;
	margin-bottom: 2px;
}

.crc-org-node-contact {
	font-size: 10px;
	color: #646970;
	line-height: 1.3;
}

.crc-org-node-actions {
	margin-top: 6px;
}

.crc-org-node-actions a {
	font-size: 11px;
}

/* Level colours */
.crc-org-node[data-level="organization"] {
	border-color: #1e3a5f;
	background: #fff;
	min-width: 180px;
}

.crc-org-node[data-level="organization"] .crc-org-node-name {
	font-size: 14px;
}

.crc-org-node.is-virtual {
	cursor: default;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.crc-org-node[data-level="zone_pastor"] {
	border-color: #1d4ed8;
	background: #eff6ff;
}

.crc-org-node[data-level="overseer"] {
	border-color: #7c3aed;
	background: #f5f3ff;
}

.crc-org-node[data-level="supervisor"] {
	border-color: #059669;
	background: #ecfdf5;
}

.crc-org-node[data-level="coordinator"] {
	border-color: #d97706;
	background: #fffbeb;
}

.crc-org-node[data-level="cell_leader"] {
	border-color: #db2777;
	background: #fdf2f8;
}

.crc-org-node[data-level="member"] {
	border-color: #6b7280;
	background: #f9fafb;
}

.crc-org-loading,
.crc-org-empty {
	padding: 3rem;
	text-align: center;
	color: #646970;
}

.crc-org-frontend {
	margin: 1.5rem 0;
}

.crc-org-frontend .crc-org-viewport {
	max-height: 70vh;
}
