#nodeOverlay {
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1000;
}

.vorgehenOverlay {
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(243, 222, 253);
    border: rgb(102, 100, 100), solid, 5px;
    border-radius: 12px;
    margin: 20% auto;
    padding: 28px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: end;
    font-size: 20px;
    text-align: justify;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: rgb(196, 33, 33);
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
}

h3 {
    margin-bottom: 12px;
}
