
/*######################################################################################*/
/*######################################################################################*/
/*######################################################################################*/
/* Ladebildschirm */

.loader{
    height: 100%;
    width: 100%;
    background-color: transparent;
    border: 0;
    margin: 0;
    padding: 0;
}

.Ladebildschirm{
    height: 200px;
    width: 200px;
    position:absolute;
    top: calc((100vh - 200px) / 13 * 3); /* Oberer Abstand im Verhältnis 5:8 */
    left:50%;
    transform: translate(-50%, 0);
    border: 0;
    padding: 0;
    margin: 0;

}


.ProgressFortschrittInfo{
    display: block;
    position: relative;
    top: 180px;
    z-index: 2;
    color: yellow;
    font-weight: bold;
    align-items: center;
    justify-content: center;
}

.ProgressFortschrittInfo div{
    text-align: center;
    text-shadow: 0px 3px 10px rgba(0, 0, 0, 1);
    width: 100%;
}


.ProgressUploadFiles {
    display: block;
    position: relative;
    top: 180px;
    z-index: 2;
    color: yellow;
    font-weight: bold;
    align-items: center;
    justify-content: center;
}

.ProgressUploadFiles div{
    text-align: center;
    text-shadow: 0px 3px 10px rgba(0, 0, 0, 1);
    width: 100%;
}



.Ladebildschirm img{
    height: 200px;
    width: 200px;

    position:absolute;
    top: 0px;
    left: 0px;
}


#snake {
    animation: rotate infinite 3s linear;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 10px solid transparent;
    border-top-color: var(--background-color);
    border-right-color: var(--background-color);

    position:absolute;
    top: -23px;
    left: -50px;
}

#snake:before, #snake:after{
    animation: rotate infinite 2s linear;
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 5px solid transparent;
}

#snake:before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-top-color: var(--text-color);
    border-right-color: var(--text-color);
}

#snake:after {
    animation-duration:1s;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border-width: 5px;
    border-top-color: var(--text-color-hover);
    border-right-color: var(--text-color-hover);
}


@keyframes rotate {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

@-moz-keyframes rotate {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}

@-webkit-keyframes rotate {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

/*######################################################################################*/
/*######################################################################################*/
/*######################################################################################*/
/* base */


html{
    height: 100%;
}


body{
    height: 100%;
    background-color: var(--border--color);
}


/*######################################################################################*/
/*######################################################################################*/
/*######################################################################################*/
/* Styling der geöffneten Popup-Box */
dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid black;
    padding: 5px;
    /*border-radius: 4px;*/
    background-color: var(--background-color);
    display: block;
}

/* Dialog */
/* Festlegung im Default-Stylesheet der Browser */
dialog:not([open]) {
    display: none;
}

dialog::backdrop {
    background: hsl(201 10% 70% /.5) ;
}

/*######################################################################################*/
/*######################################################################################*/
/*######################################################################################*/

.cookieHinweis {
    position: absolute;
    bottom: 0;
    border: 1px solid black;
    padding: 5px;
    background-color: var(--background-color);
    width: 100%;
    z-index: 10;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.cookieHinweis div{
    display: block;
}

.cookieHinweis button{
    max-width: max-content;
    padding: 10px;
}

/*######################################################################################*/
/*######################################################################################*/
/*######################################################################################*/

.select-dialog {
    width: 400px;
}



.hidden {
    display: none;
}

.workorder_button{
    padding: 5px;
    font-weight: bold;
    color: var(--text-color-button);
    border-radius: 4px;
    border: 0;
    cursor: pointer;
    background-color: var(--background-color-button);
    float: left;
}


.permission_info{
    display: flex;
    font-weight: bold;
    color: var(--text-color);
    padding: 0 0 0 10px;
}

.permission_info div{
    font-size: 17px;
}

.EditBarIcon{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    gap: 5px;
    padding: 5px 0 5px 0;
}


.datenbank_icon{
    width: auto;
    height: 35px;
    margin-right: 10px;
}


.PlusElement{
    margin: 0;
    padding: 0;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 0;
    font-weight: bold;
    color: var(--text-color-button);
    cursor: pointer;
    background-color: var(--background-color-button);
}


.Edit_Button{
    display: flex;
    max-width: min-content;
    height: auto;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid black;
    font-weight: bold;
    color: var(--text-color-button);
    cursor: pointer;
    background-color: var(--background-color-button);
}


.CutOrCopyDiv{
    position: relative;
}

.CutOrCopyDivContainer{
    display: none;
    position: absolute;
    top: 40px;
    z-index: 10;
    border-radius: 4px;
    border: 1px solid white;
    background-color: black;
}


.NoPermissionColor{
    background-color: gray;
}


.ArbeitsleistePlusSearch{
    display: flex;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    gap: 5px;
}


.PlusElementShow{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
}


.MinusElementShow{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
}


.search_anlage{
    width: 100%;
    border: 0;
    border-radius: 4px;
    padding: 3px;
}


.search_anlage_div{
    padding: 5px;
    gap: 5px;
    display: none;
    width: 100%;
    background-color: var(--background-color);
}


.search_feld_anzeigen{
    height: 100%;
    border-radius: 4px;
    border: 1px solid black;
    color: var(--text-color-button);
    cursor: pointer;
    background-color: var(--background-color-button);
    display: flex;
    align-items: center;
    justify-content: center;
}

.AddIconButton{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.IconKlein{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}


.search_anlage_div div{
    width: 100%;
}

.search_anlage_div button{
    border-radius: 4px;
    border: 1px solid var(--background-color-button);
    cursor: pointer;
    background-color: var(--background-color-button);
}



.div_overflow_auto{
position: absolute;
height: 100%;
width: 100%;
bottom: 0;
margin-left: 0px;
margin-right: 8px;
margin-bottom: 5px;
}


.CenterIndex{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 24px;

    color: var(--text-color);
}


.div_button_dialog{
padding: 0px;
height: 100%;
color: var(--text-color-button);
}


.div_add{
display: block;
padding: 5px;
border-radius: 4px;
box-shadow: 0 0 10px 10px rgba(0,0,0,0.30);
border: 0;
background-color: var(--background-color);
}


.div_objekt_liste{
    display: flex;
    border-radius: 4px;
    position: relative;
    align-items: center;
    width: 100%;
    padding: 0 0 0 3px;
    gap: 3px;
}

.TreeDivStart{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.TreeDivOne{
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 4px;
}

.TreeDiv{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 30px;
    border-radius: 4px;
}


.barcode_Objekt{
    float: right;
    padding: 0 3px 0 3px;
    border-radius: 4px;
    border: 1px solid white;
}


.center_items{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
}


.error_border_crimson{
    background-color: crimson;
    color: white
}

.error_border_yellow{
    background-color: yellow;
    color: black
}

.error_border_green{
    background-color: green;
    color: white
}


.GPSBorder{
    border: 1px solid black;
    border-radius: 4px;
    padding: 3px;
    margin-top: 5px;
}

.GPSdiv{
    display: flex;
    align-items: center;
}

.GPS_label{
    width: 30px;
    color: var(--text-color);
}

.myInput {
    padding: 2px;
    margin-top: 3px;
    margin-bottom: 3px;
    border-radius: 4px;
    width: 100%;
}

.filter-input {
    padding: 2px;
    margin-top: 3px;
    margin-bottom: 3px;
    border-radius: 4px;
    width: 100%;
}

.FilterInputSearch{
    border-radius: 4px;
    border: 2px solid black;
    padding: 2px;
    margin: 0;
    width: 100%;
}


.border_inhalt{
    display: block;
    padding: 5px;
    border-radius: 4px;
    min-width: 250px;
    background-color: var(--background-color);
    border: 0px;
}


/*######################################################################################*/
/*######################################################################################*/

.table_div{
    border: 3px solid black;
    max-height: 350px;
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid black;
}
th, td {
    padding: 5px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}
td {
    background-color: white;
}

.ZeroCheckboxTD {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*######################################################################################*/
/*######################################################################################*/


.eigenschaften_label{
    display: flex;
    font-weight: bold;
    color: var(--text-color);
}

/* Home Content Eigenschaften */
.eigenschaften_content {
    color: var(--text-color);
    padding: 10px;
    text-align: center;
}



/* Eigenschaften der Datenbankbilder */
.button_img{
padding: 5px;
width: 219px;
}

/* Eigenschaften der Struktur und Anlagen Icon */
.ObjektIcon{
    padding: 0;
    margin: 0;
    height: 35px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ObjektIcon img{
    padding: 0;
    margin: 0;
    width: auto;
    height: 35px;
}



.Vorschau_img{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border: 0px;
    border-radius: 4px;
    background-color: var(--background-color-button);
}

#SignaturePadDialog{
    padding: 5px;
    width: min-content;
    height: min-content;
}

#canvas-container {
    width: 85vw;
    height: calc(85vw / 2.5);
  }

#signature-pad{
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 4px;
    border: 1px solid black;
}


.dialog_BarcodeScan{
    width: max-content;
    height: max-content;
}

.dialog_Barcode_doppelt{
    padding: 5px;
    text-align: center;
    align-items: center;
}

#video, #SearchVideo {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.AndererTextBorderBlock{
    display: block;
    padding: 2px;
    margin: 2px;
    border-radius: 4px;
    border: 1px solid black;
    text-align: left;
    align-items: center;
}

.anderer_text_border{
    display: flex;
    padding: 2px;
    margin: 2px;
    border-radius: 4px;
    border: 1px solid black;
    text-align: left;
    align-items: center;
}

.anderer_text{
    font-weight: bold;
    color: var(--text-color);
    margin: 0;
}


.anderer_text_label2{
    color: var(--text-color);
}

.anderer_text2{
    color: var(--text-color);
    text-align: left;
}

.anderer_text3{
    font-weight: bold;
    color: var(--text-color);
    text-align: left;
    padding-left: 3px;
    padding-right: 3px;
}


#FlashInfoAktualisieren{
    position: relative;
    width: 100%;
    z-index: 1000;
}

.wrong_object{
    color: white;
    background-color: crimson;
    border-radius: 4px;
    border: 1px solid black;
    font-weight: bold;
    text-align: center;
    padding: 3px;
}

.message_info{
    position: absolute;
    top: 65px;
    right: 15px;
    max-width: 50%;
    border: 1px solid white;
    border-radius: 4px;
    padding: 3px 3px 3px 3px;
    background-color: var(--background-color);
    color: white;
}

.error_div_mgs{
    display: none;
    position:absolute;
    top: 3px;
    left:50%;
    transform: translate(-50%, 0);
    color: white;
    background-color: crimson;
    border-radius: 4px;
    border: 1px solid black;
    font-weight: bold;
    text-align: left;
    padding: 10px 5px 3px 5px;
    box-shadow: 0 0 10px 10px rgba(15,15,15,0.30);
    z-index: 1000;
}



.message_info button{
    display: flex;
    position: absolute;
    top: -15px;
    right: -15px;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    font-weight: bold;
    background-color: var(--background-color);
    border-radius: 50%;
    color: white;
}

.message_info div{
    font-weight: bold;
    text-align: left;
    padding: 3px 3px 3px 3px;
    border: 1px solid black;
    border-radius: 4px;
    box-shadow: 0 0 10px 10px rgba(15,15,15,0.30);
}


.Web_App_Icon_Large{
    display: flex;
    height: 300px;
    width: 300px;
}

.Web_App_Icon_Small{
    display: flex;
    height: 100px;
    width: 100px;
}



.anderer_text_label{
    font-weight: bold;
}


.action_button{
    padding: 5px;
    font-weight: bold;
    color: var(--text-color-button);
    border-radius: 4px;
    border: 1px solid white;
    cursor: pointer;
    background-color: var(--background-color-button);
    width: 100%
}


.datenbank_flex_wrap{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0 0 0;
    height: 100%;
    width: auto;
    margin: 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.datenbank_custom_button{
    border-radius: 4px;
    /*border: 1px solid black;*/
    border: 0;
    color: var(--text-color-button);
    cursor: pointer;
    background-color: var(--background-color-button);
    text-decoration: none;

    max-width: 219px;
    height: 350px;
    padding-bottom: 5px;
    flex: 1 219px;
}

.datenbank_custom_text{
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.custom-button img{
    align-self: flex-start;
  }

.StrukturElementListe{
    display: flex;
    text-align: left;
    border-radius: 4px;
    border: 1px solid black;
    cursor: pointer;
    width: 100%;
}

.ButtonContainer{
    display: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.JumpToAnlage{
    position: absolute;
    right: 10px;
    padding: 3px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: black;
}

.UpOrDown{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    background-color: var(--background-color);
    border-radius: 4px;
    border: 1px solid black;
}


/* Stil für die Info */
#InfoDragAndDrop {
    display: none;
    position: fixed;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 5px;
}



.button_groesse{
    display: block;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
    border: 1px solid black;
    cursor: pointer;
    width: 100%;

    width: 100%;
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    align-items: center;
    justify-content: center;
}

.button_groesse_black{
    display: flex;
    font-weight: bold;
    border-radius: 4px;
    border: 1px solid black;
    color: var(--text-color-button);
    cursor: pointer;
    background-color: var(--background-color-button);
    width: 100%;
    padding: 5px;
    margin: 2px 0 2px 0;
    align-items: center;
    justify-content: center;
}

.button_groesse_black div{
    width: 100%;
    align-items: center;
    justify-content: center;
}

.button_groesse_black img{
    align-items: center;
    justify-content: center;
    height: 18px;
    width: 18px;
}


.tab_button{
    padding: 3px;
    border: 1px solid black;
    cursor: pointer;
    font-weight: bold;
}



.Eigenschaften_aktualisieren{
    border: 1px solid white;
    display: none;
    position: sticky;
    top: 0;
    margin-top: 5px;
    background-color: crimson;
    padding: 5px;
    font-weight: bold;
    z-index: 1;
}


.checkbox_default{
    padding: 0;
    margin: 0;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 3px;
    right: 5px;
}

.MainedgeLogo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 100px;
}





/*######################################################################################*/
/*######################################################################################*/
/*######################################################################################*/

.DialogEdit{
    padding: 5px;
    min-width: 300px;
    height: min-content;
}



.dialog_elemente{
    display: block;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--border--color);
    background-color: var(--background-color);
    box-shadow: 0 0 10px 10px rgba(15,15,15,0.30);
    margin-bottom: 5px;
}


.workorder_elemente{
    display: block;
    padding: 5px;
    width: 100%;
    border: 1px solid var(--border--color);
    background-color: var(--background-color);
    box-shadow: 0 0 10px 10px rgba(15,15,15,0.30);
}

.workorder_elemente_objekt{
    position: relative;
    display: block;
    padding: 5px;
    width: 100%;
    border: 1px solid var(--border--color);
    background-color: var(--background-color);
    box-shadow: 0 0 10px 10px rgba(15,15,15,0.30);
}


.aktiveWorkorderObject{
    border: 1px solid white;
    background-color: var(--background-color);
    color: var(--text-color-button-hover);
}


.workorder_elemente_untergerordnet{
    display: block;
    padding: 5px;
    width: 100%;
    border: 1px solid var(--background-color);
    background-color: var(--border--color);
    box-shadow: 0 0 10px 10px rgba(15,15,15,0.30);
}

.Workorder_objektgruppe{
    padding: 3px;
    width: 100%;
    font-weight: bold;
    border-radius: 4px;
    border: 1px solid black;
}


.comment_button{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    padding: 0;
    margin: 0;
    font-weight: bold;
    border-radius: 50px;
    border: 1px solid var(--border--color);
}



.Workorder_in_a_line{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: left;
    gap: 10px;
}

.input_Workorder_margin{
    margin: 5px;
}

/*######################################################################################*/
/*######################################################################################*/
/*######################################################################################*/
/* Anlagenaufnahme base nav Button*/
.header {
  display: block;
  border: 1px solid black;
  }

.dropdown:hover .dropdown-content {
  display: block;
}


/*######################################################################################*/
/*######################################################################################*/
/*######################################################################################*/
/* Layout */
* {
  box-sizing: border-box;
}


.mainContent{
    height: auto;
    width: 100%;
    padding: 0 10px 40px 10px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.DatenContainerWidth100{
    padding: 0 0 0 0;
    height: 100%;
    width: 100%;
    margin: 0;
}

.FormColomnSearch{
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0px;
    border: 4px solid black;
    background-color: black;
    height: calc(100vh - 270px);
    overflow: auto;
    gap: 4px;
}

.FormColomn{
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0px;
    border: 4px solid black;
    background-color: black;
    height: calc(100vh - 185px);
    overflow: auto;
    gap: 4px;
}


.FilePreview{
    height: 50px;
    width: auto;
}


.action_button img{
    height: 25px;
    width: 25px;
}

.tabs_bar{
    display: flex;
    position: absolute;
    bottom: 0;
}


.AllColumnTitel{
    display: flex;
    gap: 3px;
}

.addNewObjektPlusFilter{
    position: sticky;
    top: 0;
    display: flex;
    gap: 5px;
    padding: 0 5px 0 0;
    z-index: 1;
}

.addNewWorkorderObject{
    position: relative;
    top: 0;
    display: flex;
    gap: 5px;
    padding: 0 5px 0 0;
    z-index: 2;
}


.AllColumnTitelAllInOne{
    display: none;
    width: 100%;
    height: auto;
    position: relative;
    background-color: var(--background-color);
    font-weight: bold;
    color: var(--text-color);
    padding: 5px;
    gap: 5px;
}

.AllColumn{
    display: flex;
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 3px;
}



.column_text{
    width: 30.75%;
    position: relative;
    background-color: var(--background-color);
    font-weight: bold;
    color: var(--text-color);
    padding: 5px;
    height: 45px;
}

.column_text2{
    width: 38.5%;
    position: relative;
    background-color: var(--background-color);
    font-weight: bold;
    color: var(--text-color);
    padding: 5px;
    height: 45px;
}


/* Create two unequal columns that floats next to each other */
/* Left column */
.column {
    display: block;
    padding: 0px;
    margin: 0px;
    width: 30.75%;
    height: 100%;
}

.StrukturElementCount{
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    padding: 0;
    height: 25px;
    width: 25px;
    margin: 0;
    border-radius: 25px;
    border: 1px solid black;
    font-weight: bold;
}

/* Right column */
.column2 {
    display: block;
    padding: 0px;
    margin: 0;
    width: 38.5%;
    height: 100%;
}

.workorderCollection{
    display: block;
    padding: 0px;
    margin: 0;
    width: 800px;
    height: 100%;
}


/* Footer */
.footer{
    display: block;
    position: fixed;
    bottom: 0px;
    justify-content: center;
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--text-color);
}

.footer label{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    gap: 5px;
    text-align: center;
}

.footer a {
    text-decoration: none;
    color: var(--text-color);
    text-align: center;
}


/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 850px) {

    .datenbank_custom_button{
        max-width: calc(219px / 2);
        height: calc(350px / 2);
        padding-bottom: 5px;
        flex: 1 calc(219px / 2);
    }

    .datenbank_custom_text b{
        font-size: 10px;
    }

    .button_img{
        width: calc(219px / 2);
    }

    .mainContent{
        padding-left: 0;
        padding-right: 0;
    }

    .DatenContainerWidth100{
        padding: 0 5px 0 5px;
    }

    .FormColomn{
        height: calc(100vh - 240px);
    }


    .tabs_bar{
        position: relative;
    }

    .tab_button{
        display: block;
        width: 100%;
        border: 1px solid black;
        border-radius: 4px;
        padding: 5px;
    }

    .AllColumnTitel{
        display: none;
    }

    .AllColumnTitelMobile{
        width: auto;
        display: flex;
    }

    .AllColumnTitelAllInOne{
        display: block;
    }

    .AllColumn{
        display: block;
    }

    .hidden {
    display: none;
    }

    .visible {
        display: block;
    }


    .column{
        width: 100%;
    }

    .column2{
        width: 100%;
    }

    .DialogEdit{
        width: 90%;
    }

    .button_groesse_fett{
        padding: 5px;
    }

    .ArbeitsleistePlusSearch{
        display: block;
    }

}

.show{
    display: block
}



/* ########################## Custom select ########################## */
.custom-select {
    position: relative;
    display: block;
    width: 100%;
    height: min-content;
}


.select-options {
    max-height: 200px; /* Set your desired max height */
    overflow-y: auto;
    position: relative;
    top: 0;
    left: 0;
    border: 1px solid #ccc;
    display: none;
    background-color: #ccc;
    border-radius: 4px;
}


.select-options a {
    font-weight: bold;
    display: flex;
    width: auto;
    padding: 2px;
    text-decoration: none;
    margin: 0;
    border-bottom: 2px solid #aaa;
    color: black;
}


.select-options .SubCategories {
    font-weight: normal;
    font-style: italic;
    display: block;
    padding: 3px;
    text-decoration: none;
    margin: 0;
}


.select-options a:hover {
    background-color: #f4f4f4;
}


/* ######################################################################### */
/* ########################## Custom multy select ########################## */

.selected-options-container{
    border: 0;
    padding: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 4px;
    width: 100%;
    min-height: 22px;
    background-color: white;
}

.custom-multy-select {
    display: block;
    position: relative;
    width: 100%;
}

.select-multy-options {
    max-height: 200px; /* Set your desired max height */
    overflow-y: auto;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    border: 3px solid #ccc;
    display: none;
    background-color: #ccc;
    border-radius: 4px;
    z-index: 1;
    gap: 5px;
}

.select-multy-options label{
    font-weight: bold;
    display: flex;
    padding: 3px;
    margin: 0;
    border-bottom: 2px solid #aaa;
    width: auto;
}

.select-multy-options label:hover {
      background-color: #f4f4f4;
}

.selectOptionLine1{
    color: crimson;
}

.selectOptionLineRest{
    color: black;
}

.WorkOrderStatusNeutral{
    padding: 5px;
    display: block;
    background-color: var(--background-color-button);
    color: white;
}

.WorkOrderStatusAktive{
    padding: 5px;
    display: block;
    background-color: yellow;
    color: black;
}

.WorkOrderStatusFertig{
    padding: 5px;
    display: block;
    background-color: green;
    color: white;
}

.WorkOrderStatusStorniert{
    padding: 5px;
    display: block;
    background-color: crimson;
    color: white;
}

.WorkOrderStatusReported{
    padding: 5px;
    display: block;
    background-color: gray;
    color: black;
}

/* ######################################################################### */
/* ########################## Custom multy select ########################## */

.FiveToEight_select_edit{
    display: flex;
    position: relative;
    width: 100%;
    gap: 5px;
}

.FifeParts_select{
    display: block;
    position: relative;
    min-width: calc(38.5vw - 10px);
    overflow: auto;
    height: calc(100vh - 140px);
    background-color: black;
    border: 4px solid black;
}

.EightParts_edit{
    position: relative;
    min-width: calc(61.5vw - 10px);
    padding: 5px;
    gap: 10px;
    overflow: auto;
    height: calc(100vh - 140px);
    background-color: black;
    border: 4px solid black;
}

.limiter_overflow_max{
    position: relative;
    border: 1px solid white;
    background-color: black;
    box-shadow: 0 0 10px 10px rgba(15,15,15,0.30);
    flex-grow: 1;
    overflow: auto;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 850px) {

    .FiveToEight_select_edit{
        display: block;
    }

    .FifeParts_select{
        margin-bottom: 5px;
        height: 500px;
        width: 100%;
    }

    .EightParts_edit{
        margin-bottom: 5px;
        height: 500px;
        width: 100%;
    }

}


/* ######################################################################### */
/* ########################## radio input von workorderAssignment ########################## */
.selectmitAddButtonineinerReiche{
    display: flex;
    gap: 5px;
}


/* ######################################################################### */
/* ########################## radio input von workorderAssignment ########################## */
.radioDivDataContainer {
    display: none;
    gap: 5px;
    margin-top: 5px;
}