/* ========== 文章生成器样式 ========== */

.article-prompt-textarea {
    width: 100%;
    min-height: 200px;
    padding: 14px 18px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.2s ease;
}

.article-prompt-textarea:focus {
    outline: none;
    border-color: var(--business-color, #5B7FFF);
    box-shadow: 0 0 0 3px rgba(91, 127, 255, 0.1);
}

.article-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

.article-output {
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
    min-height: 300px;
    color: #3c4043;
    white-space: pre-wrap;
    word-break: break-word;
}

.article-output:empty::before {
    content: '生成的文章将显示在这里...';
    color: #9aa0a6;
}

.article-output.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368;
}

.article-loading {
    text-align: center;
}

.article-loading .spinner {
    margin: 0 auto 16px;
}
