
.text-field-error {
    border: 2px solid red !important;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
}

.text-field-container {
    border: 2px solid transparent;
    padding: 10px;
    transition: border-color 0.3s ease;
}

.text-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.text-field-wrapper {
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

.text-field-wrapper:hover {
    border-color: #007bff;
}

.text-field-focused .text-field-wrapper {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.text-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    background: transparent;
}

.text-input::placeholder {
    color: #6c757d;
}

.text-field-footer {
    display: flex;
    justify-content: flex-end;
    padding: 8px 16px 12px;
    border-top: 1px solid #f0f0f0;
    background-color: #fafafa;
}

.char-counter {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}