/* LearnPress Textarea Question Type */

.lp-question-textarea-wrap {
    width: 100%;
    margin-top: 12px;
}

.lp-question-textarea-input {
    width: 100%;
    min-height: 140px;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    border: 1px solid #d1d5da;
    border-radius: 4px;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-question-textarea-input:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.15);
    outline: none;
}

.lp-question-textarea-input::placeholder {
    color: #aaa;
}
