.comment-entry {
    display: flex;
    background: #fafafa;
    border: 1px solid #dcdcdc;
    padding: 10px 12px;
    border-radius: 6px;

    margin: 10px auto;
    max-width: 90%;
}
.comment-avatar img {
    width: 64px;
    height: auto;
    margin-right: 10px;
}

.comment-body {
    flex: 1;
}

.comment-user {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.comment-date {
    font-size: 10px;
    color: #777;
    margin-left: 4px;
}

.comment-text {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.25;
    color: #222;
    padding-right: 5px;
}

.comment-error {
    display: table;
    margin: 8px auto 10px auto;
    padding: 8px 12px;

    max-width: 90%;
    box-sizing: border-box;

    background: #ffd6d6;
    border: 1px solid #ff8a8a;
    border-radius: 5px;
    color: #b30000;
    font-weight: bold;
    line-height: 1.25;
}
.comment-user-link {
    color: #ff8000;
    font-weight: bold;
    text-decoration: none;
}

.comment-user-link:hover {
    color: #ff9d33;
    text-decoration: none;
}
.comment-avatar a img {
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.comment-avatar a:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}
.comment-login-info {
    text-align: center;
    padding: 10px 0;
    font-size: 11px;
}
#charCounter {
    font-size: 12px;
    color: #666;
    text-align: right;
    width: 90%;
    margin: 3px auto 0 auto;
}
.comment-meta {
    border-bottom: 2px solid #ff7a00;
    padding-bottom: 4px;
    margin-bottom: 6px;
}

.comment-user {
    font-weight: bold;
    color: #ff7a00;
}
#content::after {
    content: "";
    display: block;
    clear: both;
}
.column {
    float: left;
}
#content-container,
#container,
#content {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
}
body.anonymous #column1,
body.anonymous #column2,
body.anonymous #column3 {
    float: left !important;
}

#commentBox {
    resize: vertical;
}
.comment-info {
    background: #f7f7f7;
    border: 1px solid #e2e2e2;
    padding: 5px 8px;
    margin: 6px auto;
    border-radius: 4px;
    color: #666;
    font-weight: normal;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    width: fit-content;
}
.comment-toolbar {
    width: 90%;
    margin: 0 auto 6px auto;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 6px;
}
.comment-compose {
    align-items: flex-start;
}

.comment-box {
    width: 100%;
    height: 90px;
    box-sizing: border-box;
    resize: vertical;

    background: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    padding: 8px 10px;

    font-size: 12px;
    line-height: 1.25;
}

.comment-box:focus {
    border-color: #ff7a00;
    outline: none;
}

.comment-compose-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

/* überschreibt dein altes #charCounter (das war auf 90% + auto zentriert) */
.comment-compose #charCounter {
    width: auto;
    margin: 0;
    text-align: left;
    font-size: 11px;
}