/* Tree menu */
.tree-menu {
	font-size: 14px;
}

/* Aby sa zabránilo automatickému scrollovaniu celej stránky */


.tree-menu {
	height: calc(100vh - 250px);
	overflow-y: auto;
	position: relative;
	scrollbar-width: thin;
	display: block; /* explicitne nastavíme display */
}

.customer-group {
	position: relative;
}
.tree-menu .customer-group {
	overflow: visible;
}
/* Pre Webkit (Chrome, Safari) */
.tree-menu::-webkit-scrollbar {
	width: 6px;
}

.tree-menu::-webkit-scrollbar-track {
	background: transparent;
}

.tree-menu::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}
.tree-menu .nav-link {
	color: #212529;
	padding: 0.5rem 0.75rem;
	border-radius: 4px;
}

.tree-menu .nav-link:hover {
	background-color: #f8f9fa;
}

.tree-menu .nav-link.active {
	background-color: #e9ecef;
	font-weight: 500;
}

/* Status dots */
.status-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.status-1 { background-color: #0d6efd; }  /* modrá */
.status-2 { background-color: #198754; }  /* zelená */
.status-3 { background-color: #dc3545; }  /* červená */
.status-4 { background-color: #6c757d; }  /* sivá */
.status-5 { background-color: #ffc107; }  /* žltá */

/* Vertical lines */
.electricity-points {
	position: relative;
}

.electricity-points::before {
	content: '';
	position: absolute;
	left: -12px;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #dee2e6;
}

.point-item {
	position: relative;
}

.children {
	position: relative;
}

.children::before {
	content: '';
	position: absolute;
	left: -12px;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #dee2e6;
}