.character-counter-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto !important;
    width: fit-content;
}

.character-counter-wrapper textarea {
    max-width: 100%;
    min-width: 240px;
    box-sizing: border-box;
}

.character-counter-error-wrapper {
    margin-bottom: 8px;
    margin-top: 6px;
}

.character-counter {
    display: block;
    margin-top: 4px;
    text-align: right;
    font-size: 12px;
    color: #949494;
    transition: color 0.2s ease;
}

.character-counter--error {
    color: #d32f2f;
}

.textarea--error {
    border: 1px solid #d32f2f !important;
}

.character-counter-error-message {
    display: none;
    color: #d32f2f;
    font-size: 12px;
}

.character-counter-error-message::before {
    content: '✕ ';
    font-weight: bold;
    margin-right: 4px;
}
