.dillydotted-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
}

.dillydotted-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 10px;
    width: 100%;
}

.dillydotted-label {
    font-weight: bold;
}

.dillydotted-left {
    text-align: left;
    color: var(--left-text-color, #e71628);
}

.dillydotted-right {
    text-align: right;
    color: var(--right-text-color, #e71628);
}

.dillydotted-dots {
    width: 100%;
    height: 2px; /* Sicherstellen, dass die Linie sichtbar ist */
    border-bottom: 2px dotted var(--dotted-color, #e71628);
    display: block;
}
