    /* =====================================================
       PDF to XML Tool Specific Styles
       (مكمل لملف tools.css الرئيسي)
    ===================================================== */
    
    /* Variables - مكملة لـ tools.css */
    :root {
        --primary-light: #eef2ff;
        --secondary: #3f37c9;
        --success: #4cc9f0;
        --card: #ffffff;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    /* Tool Header - يتوافق مع .tool-header في tools.css */
    .tool-header h1 {
        font-size: 2rem;
        margin-bottom: 12px;
        font-weight: 700;
        text-align: center;
        color: var(--primary, #00008B);
    }

    .tool-header p {
        color: var(--text-light, #6b7280);
        font-size: 1rem;
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    /* Progress Section - خاص بأداة XML */
    .progress-section {
        margin-top: 30px;
        display: none;
    }

    .progress-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
    }

    .progress-title {
        font-weight: 500;
        font-size: 14px;
        color: var(--text, #111827);
    }

    .progress-percent {
        color: var(--primary, #00008B);
        font-weight: 600;
        font-size: 14px;
    }

    .progress-details {
        display: flex;
        justify-content: space-between;
        font-size: 0.75rem;
        color: var(--text-light, #6b7280);
        margin-top: 8px;
    }

    /* Success Message - تخصيص إضافي */
    .success-message {
        text-align: center;
    }

    .success-icon {
        color: var(--success, #10b981);
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .success-text {
        font-weight: 500;
        margin-bottom: 15px;
    }

    .download-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: #10b981;
        color: white;
        padding: 10px 20px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .download-btn:hover {
        background-color: #059669;
        transform: translateY(-2px);
    }

    /* Features Section - خاص بالصفحة التسويقية */
    .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .feature {
        background-color: var(--primary-light, #eef2ff);
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .feature:hover {
        transform: translateY(-5px);
    }

    .feature-icon {
        color: var(--primary, #00008B);
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .feature-title {
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--text, #111827);
    }

    .feature-desc {
        color: var(--text-light, #6b7280);
        font-size: 0.85rem;
    }

    /* Footer */
    footer {
        text-align: center;
        margin-top: 40px;
        color: var(--text-light, #6b7280);
        font-size: 0.85rem;
    }


    /* Action Buttons Container */
    .action-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
        flex-wrap: wrap;
    }

    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .success-message {
        animation: fadeIn 0.5s ease;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .tool-header h1 {
            font-size: 1.6rem;
        }
        
        .features {
            grid-template-columns: 1fr;
        }
        
        .action-buttons {
            flex-direction: column;
        }
        
        .action-buttons .btn {
            width: 100%;
        }
        
        .progress-details {
            flex-direction: column;
            gap: 5px;
            text-align: center;
        }
    }
