
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.control-line {
    display: flex;
    gap: 5px;
    justify-content: space-between;
}

.control-item {
    flex: 1;
    height: 40px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
}


.grid-item:hover {
    background-color: #e0e0e0;
}


.section-content {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.section-text {
    flex: 1;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}

.section-spacer {
    flex: 1;
}   

.section-image-button {
    width: 30px;
    height: 30px;
    cursor: pointer;
    flex-shrink: 0;
}


.section-select {
    cursor: pointer;
    flex-shrink: 0;
}


.section-checkbox {
    cursor: pointer;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    flex-shrink: 1;
    min-width: 0;
    min-height: 0;
}

.section-inputfield {
    cursor: pointer;
    flex-shrink: 0;
}

.section-textarea {
    cursor: pointer;
    flex-shrink: 0;
}
#control-field .section-content > * {
    height: 30px;
    min-width: 30px;
    width: auto;
    box-sizing: border-box;
}

.hiddenElement {
    height: 0px;
    min-width: 30px;
    width: auto;
    box-sizing: border-box;
}

.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    min-width: 30px;
    min-height: 30px;
    width: auto;
    box-sizing: border-box;
    overflow: hidden;
}

.grid-text {
    padding: 5px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    flex-shrink: 1;
}   

.grid-text-disabled {
    padding: 5px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    color: #909090;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}  

.grid-text-header {
    border-top: #AAAAAA;
    border-top-style: solid;
    padding: 5px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
} 


.div-bracket {
    display: flex;
    flex-wrap: nowrap;     
    gap: 2px;
}

.div-infotext {
    gap: 2px;
}

.div-bracket-header {
    border-top: #000000;
    border-top-style: solid;
    padding: 2px;
    display: flex;
    flex-wrap: nowrap;     
    gap: 4px;
}
/* color picker: */
.color-picker {
    display: flex;
    flex-wrap: nowrap;     
    gap: 2px;
}

.color-picker > input {			
    flex: 0 0 auto;  
    /*font-family: monospace;*/
}
.color-picker-input {
  height:30px;
  box-sizing: border-box; /* Prevent overflow from padding/borders */
  padding: 0;         /* Removes default browser padding */
  border: none;       /* Optional: Removes default border */    

}

.basic-table  {
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    border: 2px solid #000000;
    border-spacing: 0px;
    border-collapse: collapse;
}
.basic-tablex > tr, th {
    border-left: 1px solid #000000;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    padding-left: 5px;
    padding-right: 5px;
    border-bottom: 2px solid #000000;
}
.basic-table > tr, td {
    border-left: 1px solid #000000;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    vertical-align: center;
    padding-left: 5px;
    padding-right: 5px;
    text-align: left;
    vertical-align: middle;
}
.basic-table-center {
    text-align: center;
}

.basic-table-noLeftBorder {
    border-left-width: 0px;
}

.pagination {
    padding: 5px;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
}