/* =====================================================
   YAML to PDF Tool - Additional Styles
   ===================================================== */

/* تنسيق مساحة النص (textarea) */
.yaml-textarea {
    width: 100%;
    min-height: 300px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border, #e5e7eb);
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    resize: vertical;
    background: var(--bg-light, #f9fafb);
    color: var(--text, #111827);
}

.yaml-textarea:focus {
    outline: none;
    border-color: var(--primary, #00008B);
    box-shadow: 0 0 0 2px rgba(0, 0, 139, 0.1);
}

.content-area {
    margin-top: 20px;
}

/* تنسيق المعاينة */
.preview-section {
    margin-top: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border, #e5e7eb);
    padding: 20px;
}

.preview-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border, #e5e7eb);
}

.preview-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text, #111827);
}