
/* Darstellungen für die Dialog-Box */

dialog {
    background: white;
    border: 1px solid grey;
    border-radius: .5em;
    box-shadow: 0 0 15px 5px #888;
    display: none;
    padding: 0px;

    width: 180px;
    z-index:1002;
}

dialog[open] {
    display: block;
}

@media (min-width: 30em) {
    dialog {


        margin-top: 0em;

        margin-left:0;
        width: 20em;
    }
}

/* Ebene zwischen Hintergrund und Dialog-Box, Pseudoelement noch nicht implementiert */
dialog::backdrop, #backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

dialog .button-row {
    text-align: center;
}

dialog .close {
    position: absolute;
    right: 3px;
    top: 1px;
    height: 2em;
    cursor: pointer;
    background-color: red;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    border-radius: 0 .5em .5em;
}
/* Darstellungen für die Demo-Seite */

.js #js-notice,
:not(.js) > section {
    display: none;
}

output {
    border: 2px solid #888;
    border-radius: 0.5em;
    font-weight: bold;
    margin-left: 0.5em;
    padding: 0.2em 1em;
}

output.false {
    border-color: red;
}

output.ok {
    border-color: #0b0;
}

.checkbox:checked:before{
    background-color:var(--eo-main-color);
}

.dialogTable tr:hover {
    background-color:var(--eo-light-grey);
}

.dialogTable td {
    height:40px;
    width:180px;
}

.checkboxes label {
    font-family:Arial Black;
    font-size: 12px;
    color: #666;
    border-radius: 10px 10px 10px 10px;
    background: #f0f0f0;
    padding: 100px 4px;
    text-align: left;
}

#buttonDialog{
    text-decoration: none;
    padding-bottom:17px;
    border-bottom:1px solid;
    width:220px;
    display:inline-block;
    margin-left:3px;
    margin-right:3px;

}

.buttonStatusOpenDialog{
    color:var(--eo-main-color) !important;

}

#optionCheckedValues{
    padding-top:9px;
    font-size: 12px;
}

#img-status-menu-close{
    display:none;
}


.controller {
    padding: 5px 0;
    margin: 30px 0 10px 0;
    /* border-bottom: 1px solid var(--eo-middle-grey); */
    background-color: #EEEEEE;
    padding-right: 25px;
    height: 70px;
}

.widget.boxed{
    margin-top:5px;
}

input[type=text] {
    border: none;
    border-bottom: 1px solid var(--eo-middle-grey);

}

.footerButtons{
    position:sticky;
    width:100%;
    background-color:var(--eo-light-grey);
    bottom:0px;
    height:70px;
}

@media only screen and ( max-width: 400px ){
    .footerButtons{
        padding-right:40px;
    }
}

#seModule{
    display:block !important;
}

.checkbox-button {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    user-select: none;
    text-align: center;
    line-height: 16px; /* Adjust line-height to vertically center text */
    font-size:16px;
    color:var(--eo-main-color) !important;
    padding-right:0.7em;
}



