:root {
    --vectron-blue: #00AEC7;
    --vectron-grey: #5C6670;
    --vectron-lightgrey: #dbdbdb;
    font-family: Arial, Helvetica, monospace;
   }

#statusbar {
    height:40px;
    top:0px;
    left: 8vmin;
    right: 0;
    margin-top:0px;
    position: absolute;
    background: var(--vectron-lightgrey);
}   

#sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8vmin;
    background-color: #232323;
    background-color: var(--agilox-grey);
    z-index: 30;
    background: var(--vectron-lightgrey);
}

#content {
    margin-top: 10px;
    font-family: "Verdana";
    margin-left: 20px;
    position: absolute;
    top: 40px;
    left: 8vmin;
    right: 0;
    bottom: 0;
    overflow: auto;
    padding: 0;
    border: 0;
}

#time {
    font-weight: bold;
    float: right;
    margin-right: 20px;
    margin-top: 8px;
    font-size: 20px;
    font-family: "Verdana";
}

#error {
    font-weight: bold;
    float: right;
    margin-right: 50px;
    margin-top: 8px;
    font-size: 20px;
    font-family: "Verdana";
}

#head {
    font-weight: bold;
    font-family: "Verdana";
    float: left;
    margin-left: 20px;
    margin-top: 5px;
    font-size: 24px;
}

.image_buttons_small {
    width: 4vmin;
    height: 4vmin;
    margin: 2vmin;
}

.buttons:hover {
    background-color: rgb(0,174,199);
}

.button_content {
    background-color: var(--vectron-grey);
    border: solid;
    border-color: var(--vectron-lightgrey);
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 3px;
    font-size: 16px;
    margin: 5px;
    -webkit-appearance: none;
    width: 250px;    
}

.button_content:hover {
    background-color: var(--vectron-blue);
}

.button_content_selected {
    background-color: var(--vectron-blue);
    border: solid;
    border-color: var(--vectron-lightgrey);
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 3px;
    font-size: 16px;
    margin: 5px;
    -webkit-appearance: none;
    width: 250px;    
}

.button_mini {
    background-color: var(--vectron-grey);
    border: none;
    border-color: var(--vectron-lightgrey);
    color: white;
    padding: 5px 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    font-size: 12px;
    margin: 1px;
    -webkit-appearance: none;
    width: 40px;    
}

#rbgimage {
    position: absolute;
	left: 200px;
    top: 50px;
}

input[type=text],input,select {
  padding: 5px 5px;
  margin: 1px 0;
  box-sizing: border-box;
}

input[type=radio] {

}


button {
    width: 100%;
    background-color: var(--vectron-grey);
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
button:hover {
    background-color: var(--vectron-blue);
  }





  /* The popup form - hidden by default */
.form-popup {
    display: none;
    position: fixed;
    top: 150px;
    left: 150px;
    border: 3px solid var(--vectron-blue);
    z-index: 9;
  }
  
  /* Add styles to the form container */
  .form-container {
    max-width: 600px;
    padding: 10px;
    background-color: var(--vectron-lightgrey);
  }

  
#popup {
            display: none;
            position: fixed;
            top: 20%;
            left: 30%;
            width: 40%;
            max-height: 60%; /* Begrenzte Höhe für Scrollbereich */
            background: #fff;
            border: 1px solid #ccc;
            padding: 20px;
            z-index: 1000;
            overflow-y: auto; /* Scrollbar aktivieren */
        }
        #overlay {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }

.popup-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.popup-table th, .popup-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.popup-table th {
    background-color: #f0f0f0;
}
