:root {
  --hellgrau: #f1eded; 
}
.overlay {
    display: none;
    border-radius: 8px;
    transition: opacity .2s ease-in-out;
    opacity: 0.94;
    width: 800px;
    position: absolute;
    top: 10px;
    left: 200px;
    background-color: var(--hellgrau);
    padding: 38px 10px 10px 10px;
    z-index: 2;
}
#overlay_arbeitsamt {
    background-color: var(--hellblau);
}
.schliessen {
    font-size: 1.6em;
    cursor: pointer;
    padding: 2px 6px;
    right: 1px;
    top: 1px;
    position: absolute;
    border-top-right-radius: 8px;
}
.schliessen:hover {
    background-color: red;
    color: var(--hellgrau);
}
.unsichtbar {
    display: none !important;
}
.person-icon {
    font-size: 2.5em;
    cursor: grab;
}
.main-icon {
    font-size: 5em;
}
.maennlich {
    color: cornflowerblue;
}
.weiblich {
    color: hotpink
}
.box-kostenstelle-einzel {   
    display: flex;
    justify-content: space-between;     
    border: 1px solid grey;
    border-radius: 4px;
    margin: 14px;
}
.box-kostenstelle-einzel-maschine {  
    border: 1px solid grey;
    border-radius: 4px;
    margin: 14px;
}
.box-maschine-einzel {
    display: flex;
    justify-content: space-between;     
    margin: 14px; 
}
.box-abteilung-gesamt {
    overflow-y: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
    position: relative;
    z-index: 0;
    scroll-behavior: smooth;
    max-height: 500px;
    min-height: 400px;
    background-color: #fff;
}
.box-mitarbeiter, .box-kostenstelle-einzel, .box-geeignete-mitarbeiter {
    padding: 8px;  
}
.box-geeignete-mitarbeiter {
    min-height: 58px;
    border: 1px solid grey;
    border-radius: 4px;
    margin: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zuweisung-box {
    width: 100px;
}
.dropzone_geeignete_mitarbeiter {
    min-height: 73.2px;
    width: calc(100% - 120px);
}
.box-mitarbeiter-entlassen {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto;
}
.symbol-box, .mitarbeiter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mitarbeiter-box {
    width: 380px;
}
.symbol-box {
    width: 200px;
    hyphens: auto;
    text-align: center;
}
.button-zuweisung {
    font-size: 0.8em;
    cursor: pointer;
    width: 100px;
}
.tooltipp-box {
    width: 100px;
    display: flex;
}
.box-mitarbeiter {
    border: 1px solid grey;
    border-radius: 4px;
    margin-bottom: 14px;
    min-height: 58px;
}
.hinweis-box {
    font-size: 0.8em;
    padding: 3px;
}
.ueberschrift {
    display: block;
}
.ueberschrift-overlay {
    text-align: center;
}
.arbeitsplaetze {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}
.arbeitsplatz {
    width: 32px;
    height: 52px;
    border: 1px solid grey;
    padding: 2px;
    margin: 2px;
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.blinking {
    color: green;
    animation: blink 1s infinite; 
}


#div1, #div2 {
  width: 350px;
  height: 70px;
  padding: 10px;
  border: 1px solid #aaaaaa;
}