.textarea {
display: flex;
min-height: 4.5rem;
width: 100%;
border-radius: var(--radius);
border: 1px solid var(--input);
background-color: var(--background);
padding: 0.75rem;
font-size: 0.875rem;
color: var(--foreground);
outline: none;
resize: vertical;
transition: all 0.2s ease;
}
.textarea:focus {
border-color: var(--ring);
box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}
.textarea::placeholder {
color: var(--muted-foreground);
}
.textarea:disabled {
cursor: not-allowed;
opacity: 0.5;
}