@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

:root {
	--bg-color: white;
	--text-color: black;
	--link-color: black;
}

[data-theme="dark"] {
	--bg-color: #1F2021;
	--text-color: white;
	--link-color: white;
}

body{
    margin: 0 auto;
	padding: 20px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
}

.login-page {
  background: linear-gradient(90deg, #1C3E4F, #11426B);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.login-page {	
	padding: 0px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.login-page::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: url('images/Symbols/AdmiCharge_Symbol_Thunderbolt.png') center center no-repeat;
    background-size: cover;
    opacity: 0.05;        /* sehr dezent */
    pointer-events: none;  /* blockiert keine Klicks */
    z-index: 0;
}

a {
	font-family: Arial;
	text-decoration: none;
	font-weight: bold;
	letter-spacing:0px;
	color: var(--link-color);
}

.impressum,
.impressum h1,
.impressum h2,
.impressum h3,
.impressum h4,
.impressum p {
  color: var(--text-color);
}

form {
    display: flex;
    flex-direction: column;
}

select {
    height: 40px;
	padding: 0 10px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
	border-radius: 5px;
	border: 1px solid #ccc;
}

button:disabled {
	background-color: rgba(255, 255, 255, 0.1);
	cursor: not-allowed;
	border-radius: 5px;
	border-color: transparent;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme]) {
	  --bg-color: #1F2021;
	  --text-color: white;
	  --link-color: white;
	}
}

input {
	width: auto;
	height: 20px;
	padding: 10px;
	margin: 5px 0;
	border: 1px solid #ccc;
	border-radius: 5px;	
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input[type="checkbox"] {
	width: 20px;
	height: 20px;
	padding: 10px;
	margin: 5px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.content {
    flex: 1;
}

#gruener-text{
	font-weight:bold;
	font-size: 18px;
	float: right;
	margin-right:60px;
	margin-top: 50px;
	text-align: left;
}
#txt_ueberschrift1{
	font-weight:bold;
	font-size:30px;
	text-align: center;
	letter-spacing:0px;
	margin: 0px 0px 10px 0px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.txt_ueberschrift_klein{
	font-weight:normal;
	font-size:18px;
	text-align: center;
	letter-spacing: 0px;
	margin: 0 0 0 0;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

#txt_website_copyright{
	color: white;
	font-weight:normal;
	font-size:15px;
	text-align: center;
	letter-spacing: 0px;
	margin: 0 0 0 0;
	padding-bottom: 15px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

#txt_website_version{
	color: white;
	font-weight:normal;
	font-size:15px;
	text-align: center;
	letter-spacing: 0px;
	margin: 0 0 0 0;
	padding-bottom: 15px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

body.login-page #txt_website_version {
	font-size: 13px;
	padding-bottom: 5px;
}

#slideshow{
		background-color: #262731;
		background-repeat: repeat;
		background-position: center;
		height: auto;
		width: auto;
}
#Abstand{
	line-height:25px;
}
#listeDiv{
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: 0px;
	margin-left: 0px;
}

#listeDiv img {
    margin: 10px;
	border-radius: 5px;
	box-shadow: 0 0 25px rgba(219, 219, 219, 0.3);
}
#listeDiv img:hover {
	box-shadow: 0 0 50px rgba(255, 255, 255, 0.6);
}

header {
	margin-bottom: 60px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 10px 0px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
    background: linear-gradient(to right, rgba(130, 67, 254, 0.5), rgba(1, 164, 85, 0.8));
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-left, .navbar-center, .navbar-right {
display: flex;
align-items: center;
}

.navbar a {
text-decoration: none;
font-weight: bold;
font-size: 17px;
text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
letter-spacing: 0;
margin: 0 10px;
color: white;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 2.5px;
}

.navbar-left a img {
box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
vertical-align: middle;
border-radius: 50px;
height: 35px;
width: 35px;
margin: 0 4px 0 10px;
}

.navbar-center a {
margin: 0 15px;
text-decoration: none;
}

.navbar-center a img {
vertical-align: middle;
box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
border-radius: 50px;
height: 35px;
width: 35px;
margin-right: 4px;
}

.navbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
	color: white;
    gap: 10px;
	margin: 0px 20px 0px 0px;
}

.navbar_right_items {
    display: flex;
}

.navbar-right a {
    display: block;
	cursor: pointer;
    align-items: center;
	margin: 0px 0px 0px 0px;
}

.navbar-right a img {
margin-left: 5px;
vertical-align: middle;
height: 35px;
width: 35px;
box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
border-radius: 50px;
}

#settings-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
	margin-right: 5px;
}

#settings-link img {
    margin-right: 4px;
}

#logout-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

#logout-link img {
    margin-right: 4px;
	height: 35px;
	width: 35px;
}

#logout-text {
    flex-direction: column;
    align-items: flex-start;
}

#logout-label {
    font-weight: bold;
}

#user-info {
    font-weight: normal;
    font-size: 14px;
	margin: 0px 0px -5px 0px;
}

.image {
    flex: 1;
	margin-right: 15%;
}

.image img {
    max-width: 100%;
    height: auto;
}

.text {
    flex: 4;
	margin-left: 5%;
	margin-right: 5%;
}

.text a {
	color: white;
    font-size: 18px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.text h2 {
    font-size: 22px;
    margin-top: 0;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.text h1 {
    font-size: 20px;
    margin-top: 5;
	margin-bottom: 15px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.text h0 {
    font-size: 18px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.roundGrayShadow {
	box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
	border-radius: 50%;
}

.roundGrayShadow img:hover {
	box-shadow: 0 0 50px rgba(255, 255, 255, 0.6);
	border-radius: 50%;
}

.roundGrayShadow a {
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.text p {
    font-size: 16px;
}

footer {
	background-color: #1A62A5;
    text-align: center;
	margin: 20px 0px 0px 0px;
	padding: 10px;
	font-size: 15px;
	border-radius: 5px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

footer p {
	padding-bottom: 10px;
	color: white;
}

footer a {
	padding: 10px;
	color: white;
}

  /* Container für die Animation */
  #animationContainer {
    position: relative;
    width: 100%;
    height: 20px;
    margin-top: 20px;
    display: none; /* wird nur bei Erfolg angezeigt */
  }

  /* Die Stromlinie */
	.line {
	position: absolute;
	top: 85%;
	left: 0;
	width: 100%;
	height: 50px; /* dicke Linie */
	background: linear-gradient(90deg, #00f, #0ff); /* Blau-gradient */
	clip-path: polygon(
		0% 50%, 5% 40%, 10% 60%, 15% 35%, 20% 55%, 
		25% 30%, 30% 50%, 35% 40%, 40% 60%, 45% 35%, 
		50% 55%, 55% 30%, 60% 50%, 65% 40%, 70% 60%, 
		75% 35%, 80% 55%, 85% 30%, 90% 50%, 95% 40%, 100% 50%
	);
	transform: translateY(-50%);
	}

  /* Das Auto */
  .car {
    position: absolute;
    top: 20%;
    left: 0;
    transform: translateY(-50%) scaleX(-1);
    font-size: 28px;
    animation: drive 1.5s linear forwards;
  }

  /* Animation: von links nach rechts */
  @keyframes drive {
    from {
      left: 0;
    }
    to {
      left: calc(100% - 30px);
    }
  }

.accordion-button {
	background-color: rgba(255, 255, 255, 0.5);
    color: #444;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
	border-radius: 5px;
	margin: 10px 0px;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: background-color 0.4s ease;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
}

.accordion-button:hover {
    background-color: #ccc;
}

.accordion-content {
    padding: 10px 15px;
    display: none;
    background-color: rgba(255, 255, 255, 0.25);
    overflow: hidden;
    transition: height 0.4s ease;
    width: 100%;
    box-sizing: border-box;
	border-radius: 5px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
}

.accordion-content a {
	color: white;
    font-size: 18px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.accordion-content p {
	color: white;
    font-size: 16px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.table-container {
	max-height: 50vh;
    overflow-y: auto;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
	border-radius: 5px;
}

#table-container-sessions {
	margin-top: 20px;
}

#sessions {
	background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}

#sessions thead {
	position: sticky;
	top: 0;
	z-index: 0;
}

#sessions th {
	background-color: rgba(26, 98, 165, 0.95);
    padding: 8px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    text-align: left;
	top: 0;
	position: sticky;
	z-index: 10;
}

#sessions td {
	border-radius: 0px;
	margin-bottom: 20px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    padding: 8px;
    text-align: left;
}

#sessions th:nth-child(1), 
#sessions td:nth-child(1) {
	width: 2.5%;
}

#sessions th:nth-child(2), 
#sessions td:nth-child(2) {
	width: 10%;
}

#sessions th:nth-child(3), 
#sessions td:nth-child(3) {
	width: 10%;
}

#sessions th:nth-child(4), 
#sessions td:nth-child(4) {
	width: 10%;
}

#sessions th:nth-child(5), 
#sessions td:nth-child(5) {
	width: 10%;
}

#sessions th:nth-child(6), 
#sessions td:nth-child(6) {
	width: 10%;
}

#sessions th:nth-child(7), 
#sessions td:nth-child(7) {
	width: 10%;
}

#sessions th:nth-child(8), 
#sessions td:nth-child(8) {
	width: 10%;
}

#sessions th:nth-child(9), 
#sessions td:nth-child(9) {
	width: 2.5%;
	text-align: center;
}

#sessions th:nth-child(10), 
#sessions td:nth-child(10) {
	width: 3%;
}

#chargingsessions-pagination-controls {
    text-align: center;
    margin: 10px;
}

#chargingsessions-pagination-controls select,
#chargingsessions-pagination-controls button {
	height: 40px;
    margin: 5px 5px;
    padding: 5px 10px;
    font-size: 14px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
}

#cost-header {
    padding: 0 10px;
    text-align: left;
    vertical-align: middle;
}

.cost-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#cost-input-container {
    display: flex;
    align-items: center;
}

#cost-input-container input {
    width: 50px;
    padding: 5px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    margin: 0px 10px 0px 10px;
    text-align: right;
	border-radius: 5px;
	border-color: transparent;
}

#evses {
	background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}

#evses thead {
	position: sticky;
	top: 0;
	z-index: 0;
}

#evses th {
	background-color: rgba(26, 98, 165, 0.95);
    padding: 8px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    text-align: left;
	top: 0;
	position: sticky;
	z-index: 10;
}

#evses td {
	border-radius: 0px;
	margin-bottom: 20px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    padding: 8px;
    text-align: left;
}

#evses th:nth-child(1), 
#evses td:nth-child(1) {
	width: 2.5%;
}

#evses th:nth-child(2), 
#evses td:nth-child(2) {
	width: 10%;
}

#evses th:nth-child(3), 
#evses td:nth-child(3) {
	width: 7.5%;
}

#evses th:nth-child(7), 
#evses td:nth-child(7) {
	width: 2.5%;
    text-align: center;
}

#evses th:nth-child(8), 
#evses td:nth-child(8) {
	width: 2.5%;
    text-align: center;
}

#evses th, #evses td {
	width: 20%;
}

#configButton {
	margin: 0px;
	margin-top: 10px;
}

#EVSE_Restart_Button {
	margin: 0px;
	margin-top: 10px;
}

#EVSE_Delete_Button {
	margin: 0px;
	margin-top: 10px;
}

#EVSE_actions_closeModal_button {
	margin: 0px;
	margin-top: 10px;
}

#downloadOcppLogButton {
	margin: 0px;
	margin-top: 10px;
	height: 29px;
}

#EVSE_ocpp_log_closeModal_button {
	margin: 0px;
	margin-top: 10px;
}

#ChargingSessions_closeModalButton {	
	margin: 0px;
	margin-top: 10px;
}

#rfids {
	background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}

#rfids thead {
	position: sticky;
	top: 0;
	z-index: 0;
}

#rfids th {
	background-color: rgba(26, 98, 165, 0.95);
    padding: 8px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    text-align: left;
	top: 0;
	position: sticky;
	z-index: 10;
}

#rfids td {
	border-radius: 0px;
	margin-bottom: 20px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    padding: 8px;
    text-align: left;
}

#rfids th:nth-child(1), 
#rfids td:nth-child(1) {
	width: 2.5%;
}

#rfids th:nth-child(2), 
#rfids td:nth-child(2) {
	width: 10%;
}

#rfids th:nth-child(3), 
#rfids td:nth-child(3) {
	width: 10%;
}

#rfids th:nth-child(4), 
#rfids td:nth-child(4) {
	width: 10%;
}

#rfids th:nth-child(5), 
#rfids td:nth-child(5) {
	width: 1%;
}

#rfids th:nth-child(6), 
#rfids td:nth-child(6) {
	width: 1%;
}

#rfids th, #rfids td {
	width: 20%;
}

/* #modal-content-add-rfid {
	width: 25%;
	padding: 0px 10px;
} */

#add-rfid-form {
    /* max-width: 400px;
    margin: 0px auto 20px auto;
    display: flex;
    flex-direction: column; */
    gap: 10px;
}

.rfid_input-row {
    display: flex;
    gap: 10px;
}

.rfid_input-row input {
    flex: 1;
}

#rfid_add_card_vehicle-select_label {
	margin-bottom: 0px;
}

#rfid_add_card_vehicle-select {
	width: 50%;
}

.rfid_checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rfid_checkbox-container input {
    width: 18px;
    height: 18px;
    accent-color: #007bff;
}

#rfid-edit-enable-card {
	margin-top: 15px;
}

#vehicles {
	background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}

#vehicles thead {
	position: sticky;
	top: 0;
	z-index: 0;
}

#vehicles th {
	background-color: rgba(26, 98, 165, 0.95);
    padding: 8px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    text-align: left;
	top: 0;
	position: sticky;
	z-index: 10;
}

#vehicles td {
	border-radius: 0px;
	margin-bottom: 20px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    padding: 8px;
    text-align: left;
}

#vehicles th:nth-child(1), 
#vehicles td:nth-child(1) {
	width: 2.5%;
}

#vehicles th:nth-child(2), 
#vehicles td:nth-child(2) {
	width: 10%;
}

#vehicles th:nth-child(3), 
#vehicles td:nth-child(3) {
	width: 10%;
}

#vehicles th:nth-child(4), 
#vehicles td:nth-child(4) {
	width: 10%;
}

#vehicles th:nth-child(5), 
#vehicles td:nth-child(5) {
	width: 1%;
}

#vehicles th, #vehicles td {
	width: 20%;
}

/* #modal-content-add-vehicle {
	width: 25%;
	padding: 0px 10px;
} */

#add-vehicle-form {
	/* max-width: 400px;
    margin: 0px auto 20px auto;
    display: flex;
    flex-direction: column; */
    gap: 10px;
}

.vehicle_input-row {
    display: flex;
    gap: 10px;
}

.vehicle_input-row input {
    flex: 1;
}

.vehicle_checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle_checkbox-container input {
    width: 18px;
    height: 18px;
    accent-color: #007bff;
}

#sessions th, #evses th, #rfids th, #vehicles th {
    color: white;
 }

  #sessions td, #evses td, #rfids td, #vehicles td {
    background-color: var(--table-bg);
}

.tooltip {
    position: absolute;
    background-color: rgba(26, 98, 165, 0.95);
    color: white;
    padding: 8px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 9999;
    max-width: calc(100% - 20px);
    word-wrap: break-word;
    text-align: center;
    font-weight: normal;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.login-box {
	color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 30px 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    width: auto;
	text-align: center;
	margin: 20px;
}

.login-box form {
	display: inline;
}

/* Logo & Titel */
.logo img {
    filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.3));
}
.logo h1 {
    font-size: 28px;
    margin: 10px 0 5px 0;
}
.subtitle {
    font-size: 14px;
    opacity: 0.8;
}

/* Eingabefelder mit Floating Labels */
.input-group {
    position: relative;
    margin: 25px 0;
    text-align: left;
}

.input-group input {
    width: 100%;
    padding: 10px 0px 10px 0px;
	box-sizing: border-box;
  	height: 50px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
}

.input-group input::placeholder {
    color: transparent;
}

.input-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: rgba(255,255,255,0.6);
    background-color: transparent;
    pointer-events: none;
    transition: 0.3s ease all;
}

/* Floating-Label Effekt */
.input-group input:focus,
.input-group input:not(:placeholder-shown) {
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.1);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #fff;
    background: #1c6cb2;
    padding: 0 6px;
    border-radius: 5px;
}

/* Button */
#loginButton {
    width: 100%;
    padding: 12px;
    background-color: #1c6cb2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

#loginButton:hover {
    background-color: #228be6;
}

/* Testumgebung-Warnung als Banner */
.test-warning {
    position: relative;
    margin-top: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    padding: 0px 0px 5px 0px;
    text-align: center;
    font-size: 14px;
    max-width: 350px;
}

/* Roter Banner oben mit ⚠ Icon */
.test-warning::before {
    content: "⚠ Achtung";
    display: block;
    background-color: #f87171;
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding: 2px 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 5px;
}

/* Links im Hinweis */
.test-warning a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}

.test-warning p {
	padding: 0px 20px 0px 20px;
}

.footer-box-loginpage {
    margin-top: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    max-width: 350px;
}

.footer-box-loginpage a {
    color: #fff;
    font-weight: bold;
}

/* Support-Text */
.support {
    margin-top: 15px;
    font-size: 14px;
}

.support a {
    color: #fff;
    text-decoration: underline;
}

#dateRangeSelect {
	margin: 0px 0px 10px 0px;
}

input[type="submit"] {
	background-color: #1A62A5;
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
}
input[type="submit"]:hover {
	background-color: #1C6CB2;
}

#LoginErrorMessage {
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: -10px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.ChartErrorMessage {
	display: none;
	text-align: center;
	margin-top: 20px;
	text-align: center;
}

.DashboardItemContainer {
    display: flex;
    justify-content: space-between;
    margin: 0px -10px;
}

.DashboardItem {
    margin: 10px;
    background-color: rgba(26, 98, 165, 0.1);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    padding: 10px;
    flex: 1;
}

.DashboardItemHeader {
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
}

.DashboardItem h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.DashboardItem h3 + h3 {
    font-weight: normal;
    margin-top: 5px;
}

.DashboardChart {
    max-width: 90%;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.DashboardChart canvas {
    display: block;
}

.modal {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);

	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

.modal.open {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background-color: var(--bg-color);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	margin: 10% auto;
	padding: 15px;
	border: 1px solid #888;
	width: 50%;
	max-height: 60vh;
	border-radius: 5px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);

	transform: translateY(-20px);
	opacity: 0;
	transition: all 0.3s ease;
}

.modal.open .modal-content {
	transform: translateY(0);
	opacity: 1;
}

.modal-content .config-table {
    width: 100%;
    border-collapse: collapse;
    padding: 0px;
}

.modal-content .config-table th, .modal-content .config-table td {
    padding: 0px;
    text-align: left;
	width: 50%;	
	margin-right: 10px;
}

.modal-content .config-table input {
    padding: 5px;	
	width: 75%;
}

#sessionDetails {
	border-radius: 0px;
}

.modal-content pre {
    font-family: inherit;
    font-size: inherit;
    white-space: normal;
	overflow-y: auto;
}

.modal-content p {
	color: var(--text-color);
	margin-bottom: 10px;
}

.modal-content table {
	width: 100%;
	border-collapse: collapse;
}

.modal-content th, .modal-content td {
	text-align: left;
    font-family: inherit;
	padding: 8px 8px 8px 1px;
	border-bottom: 1px solid #ddd;
}

.modal-content th {
	background-color: rgba(26, 98, 165, 0.1);
    font-weight: bold;
    width: 25%;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
	color: #555;
	text-decoration: none;
	cursor: pointer;
}

.PageButton {
	font-size: 14px;	
    padding: 8px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    text-align: center;
	font-family: Arial;
	text-decoration: none;
	font-weight: bold;
	letter-spacing:0px;
	color: white;
	margin: 10px 0px;
	vertical-align: middle;
	height: 45px;
	width: auto;
	border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    background-color: rgba(26, 98, 165, 0.5);
	border: none;
	outline: none;
	cursor: pointer;
}

.PageButton:hover {	
	background-color: #1A62A5;
}

.PageButton_modal_add_item {
	font-size: 14px;
    padding: 8px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    text-align: left;
	font-family: Arial;
	text-decoration: none;
	font-weight: bold;
	letter-spacing:0px;
	color: white;
	vertical-align: middle;
	height: 45px;
	width: 100px;
	border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    background-color: rgba(26, 98, 165, 0.5);
	border: none;
	outline: none;
	cursor: pointer;
}

.PageButton_modal_add_item:hover {	
	background-color: #1A62A5;
}

.PageButton_Electricity {
	font-size: 14px;	
    padding: 8px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    text-align: center;
	font-family: Arial;
	text-decoration: none;
	font-weight: bold;
	letter-spacing:0px;
	color: white;
	margin: 2.5px 2.5px;
	vertical-align: middle;
	height: auto;
	width: 120px;
	border-radius: 5px;
    justify-content: center;
    align-items: center;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    background-color: rgba(26, 98, 165, 0.5);
	border: none;
	outline: none;
	cursor: pointer;
}

.PageButton_Electricity:hover {	
	background-color: #1A62A5;
}

#DownloadEVSEConfigJSONButton {
	margin: 0px 0px 10px 0px;
	height: 40px;
}

.SaveConfigurationButton {
    font-size: 18px;
    text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    text-align: center;
    font-family: Arial;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0px;
    color: white;
    margin: 5px 10px;
    vertical-align: middle;
    height: 30px;
    width: 30px;
    border-radius: 5px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    background-color: rgba(26, 98, 165, 0.5);
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
}

.SaveConfigurationButton:hover {    
    background-color: #1A62A5;
}

.SaveConfigurationButton img {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.button-container {
	display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.SaveConfigurationButton:disabled {
    opacity: 0.6;
	cursor: not-allowed;
    background-color: rgba(100, 100, 100, 0.3);
    border: none;
}

.SaveConfigurationButton:disabled img {
    opacity: 1;
    filter: grayscale(100%);
}

.modal_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal_header p {
	font-size: 20px;
	font-weight: bold; 
	margin: 0;
}

.modal_header_save_dialog {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#EVSE_actions {
	justify-content: right;
	gap: 10px;
}

#CloseChangelogModalButtonHeader {
	justify-content: right;
	gap: 10px;
}

#changelog_closeButton {
	margin: 10px 0px 0px 0px;
}

#changelogContent ul {
    list-style-type: disc;
    padding-left: 10px;
    margin: 0 0 10px 0;
}

#changelogContent li {
    margin-bottom: 8px;
    line-height: 1.25;
    font-size: 16px;
    color: var(--text-color);
}

#CloseSettingsModalButtonHeader {
	justify-content: right;
	gap: 10px;
}

#CloseSettingsModalButton {
	margin: 10px 0px 0px 0px;
}

#energy-pagination-controls {
	margin-top: 10px;
}

#WelcomeUsername {
	font-size: 22px;
	margin-bottom: 10px;
}

#AddEVSE_openTutorialButton {
	margin-left: auto;
	margin-right: 0px;
	padding: 10px 10px;
	font-size: 16px;
	cursor: pointer;
}

.AddEVSE_close {
    color: var(--text-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.AddEVSE_close:hover,
.AddEVSE_close:focus {
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
}

.AddEVSE_tutorial-page {
    display: none;
}

.AddEVSE_tutorial-page p {
    font-size: 16px;
    line-height: 1.5;
}

#AddEVSE_stationSelection {
	margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#AddEVSE_tutorialContent {
	display: none;
}

#AddEVSE_tutorialContent h2 {
	margin-bottom: 10px;
	font-size: 18px;
}

#add-vehicle-button {
	margin-left: auto;
	margin-right: 0px;
	padding: 10px 10px;
	font-size: 16px;
	cursor: pointer;
}

#add-rfid-button {
	margin-left: auto;
	margin-right: 0px;
	padding: 10px 10px;
	font-size: 16px;
	cursor: pointer;
}

.station {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 30%;
    padding: 10px;
	background-color: rgba(26, 98, 165, 0.1);
	border-radius: 5px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.station p {
	height: 100%;
}

.station-image {
    width: 100px;
    height: auto;
    margin: 10px 0;
	vertical-align: middle;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
	border-radius: 5px;
	height: 50px;
	width: auto;
}

#AddEVSE_tutorialPages {
	height: 40vh;
}

.AddEVSE_tutorial_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.AddEVSE_tutorial_header p {
	font-size: 20px;
	font-weight: bold;
}

.AddEVSE_navbuttons {
	text-align: right;
}

#AddEVSE_prevButton {
	display: none;
	margin: 10px 10px 0px 0px;
	width: 80px;
	text-align: center;
}

#AddEVSE_nextButton {
	display: inline-block;
	margin: 10px 0px 0px 0px;
	width: 80px;
	text-align: center;
}

#AddEVSE_finishButton {
	display: inline-block;
	margin: 10px 0px 0px 0px;
	width: 80px;
	text-align: center;
}

#AddEVSE_closeModalButton {
	display: inline-block;
	text-align: center;
	margin-bottom: 10px;
}

#add-rfid-btn {
	margin-left: auto;
	margin-top: -10px;
	margin-right: 0px;
	padding: 10px 10px;
	font-size: 16px;
	cursor: pointer;
}

.distribution-table-icon {
	width: 25px;
	height: 25px;
	vertical-align: middle;
	filter: invert(100%);
}

@media (prefers-color-scheme: dark) {
	.distribution-table-icon {
		filter: invert(0%);
	}
}

#treeTable {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    padding: 8px;
	border-collapse: separate;
	border-spacing: 30px 5px;
	text-align: left;
}

#treeView {
	background-color: var(--bg-color);
	padding:1em;
}

/* Einrückung der Zeilen basierend auf der Hierarchie */
.indent-level-0 {
	display: flex;
	align-items: center;
	gap: 6px;
	padding-left: 0px; /* Keine Einrückung für das oberste Level */
	color: #007BFF;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.indent-level-1 {
	display: flex;
	align-items: center;
	gap: 6px;
	padding-left: 30px; /* 1 Level tiefer, 20px Einrückung */
	color: #007BFF;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.indent-level-2 {
	display: flex;
	align-items: center;
	gap: 6px;
	padding-left: 60px; /* 2 Level tiefer, 40px Einrückung */
	color: #007BFF;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.indent-level-3 {
	display: flex;
	align-items: center;
	gap: 6px;
	padding-left: 90px; /* 3 Level tiefer, 60px Einrückung */
	color: #007BFF;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

/* Stil für Unterverteilungen */
.subbase-row {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #009acd;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

/* Stil für Zähler */
.meter-row {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #ff9900;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

.Electricity_type_texts {
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

#baseForm {
	flex-direction: row;
}

#baseForm select {
	height: 42px;
	width: 20%;
	margin:	5px 10px 5px 0px;
}

#baseForm input {
	height: 20px;
	width: 20%;
	margin:	5px 10px 5px 0px;
}

#meterForm_header {
	margin-top: 20px;
}

#meterForm select {
	height: 20px;
	width: 20%;
	margin:	5px 0;
}

#meterForm select {
	height: 42.5px;
	margin:	5px 0;
}

#editMeterForm {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 10px 20px;
	align-items: center;
}
  
#editMeterForm label {
	display: flex;
	justify-content: flex-start;
}

#editMeterForm select {
	margin: 5px 0px 5px 0px;
}

.netplan_modal_label_default {
	margin-top: 5px;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
}

#ocppLogContent {
	max-height: 400px;
	overflow-y: auto;
	overflow-x: auto;
	padding: 10px;
	font-family: monospace;
	white-space: nowrap;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin-top: 10px;
	margin-bottom: 5px;
  }
  
  .ocpp-log-row {
	display: flex;
	min-width: max-content;
	align-items: center;
	padding: 3px 0;
	border-bottom: 1px solid #eee;
  }
  
  .ocpp-timestamp {
	color: #888;
	width: 180px;
	flex-shrink: 0;
  }
  
  .ocpp-direction {
	font-weight: bold;
	padding: 2px 6px;
	margin: 0 8px;
	border-radius: 5px;
	color: white;
	flex-shrink: 0;
	width: 22.5px;
  }
  
  .ocpp-direction.IN {
	background-color: #007bff; /* Blau */
  }
  
  .ocpp-direction.OUT {
	background-color: #28a745; /* Grün */
  }
  
  .ocpp-message {
	flex-grow: 1;
	overflow: hidden;
	text-overflow: ellipsis;
  }
  
  .error-message {
	color: red;
	font-weight: bold;
  }  

  #modal-content_ocppLogModal {
	width: 90%;
  }

.dev-badge {
	height: 25px;
	width: 30px;
	display: inline-block;
	background-color: #d10202;
	color: white;
	font-size: 12px;
	font-weight: bold;	
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px 6px;
	border-radius: 5px;
	box-shadow: 0 0 3px rgba(0,0,0,0.3);
	vertical-align: middle;
}

/* reusable error banner */
.error-banner {
    position: fixed;      /* stays on top */
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f87171; /* red-500 from Tailwind style */
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none; /* ignore clicks when hidden */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* visible state */
.error-banner.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* optional: slide-up animation */
.error-banner.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
}


@media only screen and (max-width: 1200px) and (orientation: portrait),
       only screen and (max-device-width: 768px) and (orientation: landscape),
       only screen and (max-width: 900px) {

	body {		
		border-width:10px;
	}	

	.navbar a img {
		display: block;
		margin: 0 auto 5px;
	}

	.navbar-left a, img {
		display: none;
		height: 50px;
		width: 50px;
	}

	.navbar a {
		text-decoration: none;
		font-weight: normal;
		font-size: 10px;
		text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
		vertical-align: middle;
		letter-spacing: 0;
		margin: 0 0;
		text-align: center;
	}

	.dev-badge {
		display: none;
	}

	.modal_header {
		display: contents;
	}

	.vehicle_input-row {
		display: contents;
	}

	.rfid_input-row {
		display: contents;
	}

	#chargingsessions-pagination-controls {
		display: grid;
	}

	#sessions {
        display: block;
        width: 100%;
        border-collapse: collapse;
    }

    #sessions thead {
        display: block;
		position:relative;
    }

    #sessions tr {
        display: block;
        margin-bottom: 20px;
        border-radius: 5px;
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
        padding: 10px;
    }

	#sessions td, #sessions th {
        display: inline-block;		
		border-radius: 5px;
		margin: 0px;
        padding: 5px;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

    #sessions td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        font-weight: bold;
        text-transform: uppercase;
        padding-right: 10px;
    }
	
	#sessions td:last-child, #sessions th:last-child {
		border-bottom: none;
	}

	#sessions th:nth-child(1), 
	#sessions td:nth-child(1) {
		width: 95%;
	}

	#sessions th:nth-child(2), 
	#sessions td:nth-child(2) {
		width: 95%;
	}

	#sessions th:nth-child(3), 
	#sessions td:nth-child(3) {
		width: 95%;
	}

	#sessions th:nth-child(4), 
	#sessions td:nth-child(4) {
		width: 95%;
	}

	#sessions th:nth-child(5), 
	#sessions td:nth-child(5) {
		width: 95%;
	}
	
	#sessions th:nth-child(6), 
	#sessions td:nth-child(6) {
		width: 95%;
	}
	
	#sessions th:nth-child(7), 
	#sessions td:nth-child(7) {
		width: 95%;
	}
	
	#sessions th:nth-child(8), 
	#sessions td:nth-child(8) {
		width: 95%;
	}

	#sessions th:nth-child(9), 
	#sessions td:nth-child(9) {
		width: 95%;
		text-align: left;
	}

	#sessions th:nth-child(10), 
	#sessions td:nth-child(10) {
		width: 95%;
	}

	#evses {
        display: block;
        width: 100%;
        border-collapse: collapse;
    }

    #evses thead {
        display: block;
		position:relative;
    }

    #evses tr {
        display: block;
        margin-bottom: 20px;
        border-radius: 5px;
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
        padding: 10px;
    }

    #evses td, #evses th {
        display: inline-block;		
		border-radius: 5px;
		margin: 0px;
        padding: 5px;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    #evses td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        font-weight: bold;
        text-transform: uppercase;
        padding-right: 10px;
    }

    #evses td:last-child, #evses th:last-child {
        border-bottom: none;
    }

	#evses th:nth-child(1), 
	#evses td:nth-child(1) {
		width: 95%;
	}	

	#evses th:nth-child(2), 
	#evses td:nth-child(2) {
		width: 95%;
	}

	#evses th:nth-child(3), 
	#evses td:nth-child(3) {
		width: 95%;
	}

	#evses th:nth-child(7), 
	#evses td:nth-child(7) {
		width: 95%;
		text-align: left;
	}

	#evses th:nth-child(8), 
	#evses td:nth-child(8) {
		width: 95%;
		text-align: left;
	}

	#evses th, #evses td {
		width: 95%;
	}

	#modal-content_ocppLogModal {
		width: 85%;
	}

	#rfids {
        display: block;
        width: 100%;
        border-collapse: collapse;
    }

    #rfids thead {
        display: block;
		position:relative;
    }

    #rfids tr {
        display: block;
        margin-bottom: 20px;
        border-radius: 5px;
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
        padding: 10px;
    }

    #rfids td, #rfids th {
        display: inline-block;		
		border-radius: 5px;
		margin: 0px;
        padding: 5px;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    #rfids td::rfids {
        content: attr(data-label);
        position: absolute;
        left: 0;
        font-weight: bold;
        text-transform: uppercase;
        padding-right: 10px;
    }

    #rfids td:last-child, #rfids th:last-child {
        border-bottom: none;
    }

	#rfids th:nth-child(1), 
	#rfids td:nth-child(1) {
		width: 95%;
	}	

	#rfids th:nth-child(2), 
	#rfids td:nth-child(2) {
		width: 95%;
	}

	#rfids th:nth-child(3), 
	#rfids td:nth-child(3) {
		width: 95%;
	}

	#rfids th:nth-child(4), 
	#rfids td:nth-child(4) {
		width: 95%;
	}

	#rfids th:nth-child(5), 
	#rfids td:nth-child(5) {
		width: 95%;
	}

	#rfids th:nth-child(6), 
	#rfids td:nth-child(6) {
		width: 95%;
	}

	#rfids th, #rfids td {
		width: 95%;
	}

	/* #modal-content-add-rfid {
		width: 75%;
	} */

	#vehicles {
        display: block;
        width: 100%;
        border-collapse: collapse;
    }

    #vehicles thead {
        display: block;
		position:relative;
    }

    #vehicles tr {
        display: block;
        margin-bottom: 20px;
        border-radius: 5px;
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
        padding: 10px;
    }

    #vehicles td, #vehicles th {
        display: inline-block;		
		border-radius: 5px;
		margin: 0px;
        padding: 5px;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    #vehicles td::vehicles {
        content: attr(data-label);
        position: absolute;
        left: 0;
        font-weight: bold;
        text-transform: uppercase;
        padding-right: 10px;
    }

    #vehicles td:last-child, #vehicles th:last-child {
        border-bottom: none;
    }

	#vehicles th:nth-child(1), 
	#vehicles td:nth-child(1) {
		width: 95%;
	}	

	#vehicles th:nth-child(2), 
	#vehicles td:nth-child(2) {
		width: 95%;
	}

	#vehicles th:nth-child(3), 
	#vehicles td:nth-child(3) {
		width: 95%;
	}

	#vehicles th:nth-child(4), 
	#vehicles td:nth-child(4) {
		width: 95%;
	}

	#vehicles th:nth-child(5), 
	#vehicles td:nth-child(5) {
		width: 95%;
	}

	#vehicles th, #vehicles td {
		width: 95%;
	}

	/* #modal-content-add-vehicle {
		width: 75%;
	} */

	#logout-label {		
		display: none;
	}

	#logout-text {
		display: none;
	}
	
	#user-info {
		display: none;
	}

	.loginprompt {
		width: 90%;
	}

	.loginpromptItem {
		width: 100%;
	}
	
	.loginpromptItem label {
		width: 50%;
	}

	.DashboardItemContainer {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.DashboardItem {
		margin: 10px;
		width: 90%;
	}

	.modal-content {
		margin: 20% auto;
		width: 80%;
	}

	.modal-content table {
		width: 95%;
	}

	.modal-content th {
		width: 100%;
		display: block;
		border-bottom: none;
	}
	
	.modal-content td {
		/* margin-bottom: 20px; */
		width: 100%;
		display: block;
	}

	.modal-content .config-table input {
		padding: 0px;
		height: 30px;
		width: 70%;
	}

	.config-table td {
		width: 100%;
	}

	.modal-content .config-table th, .modal-content .config-table td {
		padding: 2.5px;
		width: 90%;
	}

	.SaveConfigurationButton{
		height: 32.5px;
    	margin-bottom: 7.5px;
	}

	.SaveConfigurationButton img {
		width: 10px;
		height: 10px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		opacity: 1;
	}

	#treeTable {
		border-spacing: 0px 0px;
	}

	#editMeterForm {
		grid-template-columns: auto;
	}

	.indent-level-1 {
		padding-left: 7.5px;
	}
	
	.indent-level-2 {
		padding-left: 15px;
	}
	
	.indent-level-3 {
		padding-left: 22.5px;
	}


}


@media only screen and (max-width: 1415px) {
	
	.navbar {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		height: auto;
		padding: 2.5px 0px;
		flex-direction: row;
		align-items: center;
	}

	.navbar-center a {
		font-size: 0;
	}
	
	.navbar-center a img {
		height: 40px;
		width: 40px;
		margin: 10px 3.5px;
		font-size: initial;
	}	

	.navbar-right a img {
		height: 40px;
		width: 40px;
		margin: 0 0;
	}
}