/* Standard-Zustand für Links in den Text-Boxen */
.content-text a {
    color: var(--color-accent);
    text-decoration: none; 
    transition: color 0.2s ease-in-out;
}
.content-text a:hover {
    color: var(--color-accent-hover);
    text-decoration: none; 
}
/* Verhindert, dass der Editor-Modus das Design überschreibt */
.content-text[contenteditable="true"] a {
    cursor: pointer;
}	

.kuden-highlight {
    font-family: serif; 
    font-style: italic;
    font-size: 18px;
    font-weight: bold;
    color: #F0EAD6;
    border-left: 3px solid #F0EAD6;
    padding-left: 15px;
    margin: 20px 0;
}
