#unitLine_msg{
    position: absolute;
	width: 600px;
    color: #566a2b;
    top: 350px;
    left: 90px;
}

.unit_matchingBox {
    color: #333333;
    font-family: Open Sans;
    font-size: 14px;
    text-align: left; 
    font-weight: normal;  
    height: 260px;
    display: grid;
    grid-template-columns: min-content 100px minmax(200px, 1fr);    
    align-items: center;
    width: 690px;
    margin: 0px auto;
    position: relative;
    left:10px;
    box-sizing: border-box;
}

.unit_listLeft, .unit_listRight {
    min-width: 120px;      /* nicht zu schmal */
    max-width: 100%;
    list-style-type: none;
    padding: 0 10px;
    margin: 0;
    box-sizing: border-box;
}

.unit_listLeft li{
    display: flex;
    align-items: center;
    min-height: 40px;
    justify-content: end;
    gap: 10px;

    /* NEU: verhindert Überlappung */
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
    width: 100%;  /* nutzt volle Breite des Elternelements */
    
}

.unit_listRight li{
    display: flex;
    align-items: center;
    min-height: 40px;
    gap: 10px;
}



.unit_listLeft .dotLeft   {
    background-color: #950e1d;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}

.unit_listRight .dotRight   {
    background-color: #950e1d;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}

.svg-container {
    position: relative;
    width: 150%;
    height: 100%;
    right: 25px;
    pointer-events: none;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }

#svgCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.unit_listLeft img{
    margin-right: 5px;
}

.matchingBox_standAlone {
    color: #333333;
    font-family: Open Sans;
    font-size: 14px;
    text-align: left; 
    font-weight: normal;  
    max-height: 345px;
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    max-width: 700px;
    margin: 5px auto;
}

#Line_msg_standAlone{
    width: 600px;
    color: #566a2b;
    position: absolute;
    top: 480px;
    left: 100px;
}

.listLeft_standAlone, .listRight_standAlone  {
    list-style-type: none;
    max-width: 300px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.listLeft_standAlone li{
    display: flex;
    align-items: center;   /* vertikal zentriert */
    min-height: 40px;
    justify-content: end;
    gap: 10px;
}

.listRight_standAlone li{
    display: flex;
    align-items: center;  
    min-height: 40px;
    gap: 10px;
}


.matchingBox_standAlone .dotLeft, .dotRight   {
    background-color: #598234;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.listLeft_standAlone img{
    margin-right: 5px;
}

@media (max-width: 690px) {
    .unit_matchingBox {
        width: 100%;
        min-width: 0;
    }
    .unit_listLeft, .unit_listRight {
        flex-basis: 120px;
    }
}



