
      
        label { 
            font-weight: bold; 
            margin-bottom: 5px; 
            color: #555; 
            display: block; 
        }
        
        input[type="url"], select, input[type="number"] { 
            width: 100%; 
            padding: 12px; 
            margin-bottom: 15px; 
            border: 1px solid #ddd; 
            border-radius: 4px; 
            box-sizing: border-box; 
            transition: border-color 0.3s; 
        }
        
        input:focus, select:focus { 
            border-color: #007bff; 
            outline: none; 
        }

        button {
            display: inline-block;
            padding: 15px 30px;
            background-color: #28a745;
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            width: 100%;
            margin-top: 20px;
        }
        
        button:hover {
            background-color: #218838;
            transform: translateY(-2px);
        }

        .resultat {
            margin-top: 20px; 
            background: #fff; 
            padding: 25px; 
            border-radius: 8px; 
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
            text-align: center;
            display: none;
        }
        
        .loading { 
            text-align: center; 
            font-style: italic; 
            color: #555; 
        }
        
        textarea { 
            width: 100%; 
            height: 350px; 
            margin-top: 15px; 
            padding: 15px; 
            font-family: monospace; 
            border: 1px solid #ccc; 
            border-radius: 4px; 
        }
        
        .error { 
            color: #dc3545; 
        }
        
        .success { 
            color: #28a745; 
        }
        
        #downloadLink { 
            display: inline-block; 
            margin-top: 15px; 
            padding: 15px 30px; 
            background-color: #007bff; 
            color: white; 
            text-decoration: none; 
            border-radius: 5px; 
            font-weight: bold; 
            transition: background-color 0.3s, transform 0.2s;
        }
        
        #downloadLink:hover {
            background-color: #0056b3;
            transform: translateY(-2px);
        }

        .content-section {
            background: #fff; 
            padding: 25px; 
            border-radius: 8px; 
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
            text-align: left;
        }

        .features-list { 
            list-style-type: none; 
            padding: 0; 
            display: grid;
            gap: 15px;
        }
        .features-list li { 
            background: #fff; 
            padding: 20px; 
            border-left: 5px solid #007bff; 
            margin-bottom: 0; 
            border-radius: 8px; 
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); 
        }
        .features-list li h3 { margin-top: 0; margin-bottom: 5px; }

        .faq-item {
            background: #fff;
            padding: 20px;
            border-left: 5px solid #007bff;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        .faq-item h3 { margin-top: 0; }
        
        footer { 
            text-align: center; 
            padding: 20px 0; 
            margin-top: 50px; 
            border-top: 1px solid #ddd; 
            font-size: 0.9rem; 
            color: #777; 
        }
        
        #sitemapOutput { width:100% ;background: #343a40; color: #fff; padding: 15px; border-radius: 4px; overflow-x: auto; white-space: pre-wrap; word-wrap: break-word; }
    