/* Fenster */
div.diffWindow {
    height: 100%;
}

/* Container */
div.diffContainer {
    height: 100%;
}

div.diffOutputArea {
    height: calc(100% - 100px);
    border: 1px solid #D3D3D4;
}

div.diffOutput {
    width: 100%;
    height: 100%;
    font-family: Courier New;
    font-size: 9pt;
    overflow: auto;
    background-color: rgb(230, 230, 230);
}

div.diffOutput div {
    white-space: nowrap;
}

div.diffOutput span {
    display: inline-block;
    white-space: nowrap;
}

div.diffModeSelect {
    margin-bottom: 10px;
    font-size: 10pt;
}

/* Diff-Styles */
div.diffContainer .linePrefix {
    width: 40px;
    padding: 0 5px;
    border-right: 1px solid #D3D3D4;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.diffContainer .added {
    background-color: #b5ffb2;
    color: green;
}

div.diffContainer .removed {
    background-color: #ffcbc1;
    color: #cb0000;
}

div.diffContainer .same {
    background-color: rgb(230, 230, 230);
    color: rgb(103, 103, 103);
}

/* Legende */
div.diffLegend {
    font-size: 8pt;
    width: 100%;
    margin-top: 10px;
}

div.diffLegend ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 11px;
    text-align: center;
}

div.diffLegend ul li {
    display: inline-block;
    width: 200px;
    padding: 5px;
}

div.diffWindowLoader {
    text-align: center;
    position: relative;
    top: 50%;
}

div.diffWindowLoader img {
    margin-top: 5px;
}

div.diffLoader {
    text-align: center;
    position: relative;
    top: 50%;
    vertical-align: top;
}

div.diffLoader img {
  top: 12px;
  position: relative;
}

/* Folding */
.foldPlaceholder {
    line-height: 50px;
}

.foldPlaceholder .folded {
    width: calc(100% - 50px);
    text-align: center;
}

.foldPlaceholder .folded .dots {
    background-color: #CCD0D1;
    border-radius: 5px;
    line-height: 10px;
    width: 30px;
}


/* Neues Backend */

.diffModeSelect {
display: flex;
flex-wrap: nowrap;
align-items: center;
margin: 10px;}

.diffModeSelect select {
margin-left: 10px;}

div.diffOutputArea {
    height: calc(100vh - 400px);
    border: 1px solid #D3D3D4;
}