body{
	font-family:cursive;!important
}
.container {
	margin: auto;
	padding: 20px;
}
.module, .inverter {
	margin: 10px 0;
	padding: 10px;
	border: 1px solid #ccc;
}
label {
	display: inline-block;
	width: 100px;
	text-align: left;
}​
#Modules table {
	border-collapse: collapse;
	margin: 25px 0;
	font-size: 0.9em;
	min-width: 400px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
#Modules table thead tr {
	background-color: #009879;
	color: #ffffff;
	text-align: left;
}
#Modules table th,
#Modules table td {
	padding: 12px 15px;
}
#Modules table tbody tr {
	border-bottom: 1px solid #dddddd;
}

#Modules table tbody tr:nth-of-type(even) {
	background-color: #f3f3f3;
}

#Modules table tbody tr:last-of-type {
	border-bottom: 2px solid #009879;
}
#Modules table tbody tr.active-row {
	font-weight: bold;
	color: #009879;
}
.tabs {
	display: flex;
	cursor: pointer;
	padding: 0;
	list-style: none;
	margin: 0;
	border-bottom: 2px solid #ccc;
}

.tabs li {
	padding: 10px 20px;
	border: 1px solid #ccc;
	border-bottom: none;
	margin-right: 5px;
}

.tabs li.active {
	background-color: #f0f0f0;
	border-top: 2px solid #007bff;
	border-left: 2px solid #007bff;
	border-right: 2px solid #007bff;
}

.tab-content {
	display: none;
	padding: 20px;
	border: 1px solid #ccc;
}

.tab-content.active {
	display: block;
}
#tree-container{
	padding-left:100px;
}
#tree-container svg{
	overflow:visible;
}
.node circle {
	fill: ghostwhite;
	stroke: darkcyan;
	stroke-width: 5px;
}
.node text {
	font-size: 14px;
	/* color: black; */
	fill: #f37700;
}
.link {
	fill: none;
	stroke: darkcyan;
	stroke-width: 5px;
}
button{
	align-items: center;
	appearance: none;
	background-color: #fff;
	border-radius: 24px;
	border-style: none;
	box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
	box-sizing: border-box;
	color: #3c4043;
	cursor: pointer;
	display: inline-flex;
	fill: currentcolor;
	font-size: 14px;
	font-weight: 500;
	font-family: cursive;
	height: 35px;
	justify-content: center;
	letter-spacing: .25px;
	line-height: normal;
	max-width: 100%;
	overflow: visible;
	padding: 2px 12px;
	position: relative;
	text-align: center;
	text-transform: none;
	transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	width: auto;
	will-change: transform,opacity;
	z-index: 0;
}

button:hover {
	background: #F6F9FE;
	color: #174ea6;
}

button:active {
	box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
	outline: none;
}

button:focus {
	outline: none;
	border: 2px solid #4285f4;
}

button:not(:disabled) {
	box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

button:not(:disabled):hover {
	box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

button:not(:disabled):focus {
	box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

button:not(:disabled):active {
	box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}

button:disabled {
	box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}
input{
	font-family: cursive;
}
.panel{
	padding-right: 0px;
	padding-left: 0px;
	display: inline-block;
	position: relative;
	opacity: 0.5;
}
.connected {
	opacity: 1;
}
.tooltip {
	display: none;
	position: absolute;
	bottom: 110%;
	left: 50%;
	transform: translateX(-50%);
	background-color: black;
	color: white;
	padding: 5px;
	border-radius: 5px;
	width:300px;
}
.panel:hover .tooltip {
	display: block;
}
#Modules table{
	width: 100%;
}
#inverters-park table{
	width: 100%;
}