/* marketing_writer.css - External CSS for Marketing Writer page */

/* Section Icons */
.section-icon {
    color: var(--primary);
}

/* Success Icon */
.success-icon {
    color: var(--success);
}

/* Output Section - initially hidden */
.output-section {
    display: none;
    margin-top: 48px;
}

/* Generated Prompt Container */
.prompt-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    font-family: monospace;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-height: 400px;
    overflow-y: auto;
}

/* Generated Prompt Pre */
.prompt-pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Tooltip Content */
.tooltip-content {
    position: fixed;
    display: none;
}

.tooltip-content.show {
    display: block;
}

/* Form text margin helper */
.form-text-mt-12 {
    margin-top: 12px;
}
