/* Textarea Input Component Styles */

.textarea-input-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.textarea-input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(203 213 225);
    margin-bottom: 0.5rem;
}

.textarea-input-required {
    color: #ef4444;
    margin-left: 0.25rem;
}

.textarea-input-help {
    font-size: 0.875rem;
    color: rgb(100 116 139);
    margin-top: 0.25rem;
}

.textarea-input-errors {
    font-size: 0.875rem;
    color: rgb(239 68 68);
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.textarea-input-error {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.textarea-input-error-icon {
    height: 1rem;
    width: 1rem;
}
