   
        /* Result Area */
        .result-container {
            background-color: var(--light-gray);
            border-radius: 8px;
            padding: 2rem;
            margin-top: 2rem;
            position: relative;
            border: 1px solid var(--border-color);
        }
        
        .result-title {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-size: 1.3rem;
        }
        
        .result-content {
            font-family: 'Courier New', monospace;
            word-break: break-all;
            padding: 1.25rem;
            background-color: white;
            border-radius: 6px;
            border: 1px solid #eee;
            font-size: 1rem;
            line-height: 1.6;
            white-space: pre-wrap;
        }
        
        .copy-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 0.75rem 1.25rem;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }
        
        .copy-btn:hover {
            background-color: var(--light-gray);
        }
        
        /* Rule Cards */
        .rule-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        
        .rule-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        
        .rule-title {
            font-weight: 600;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .rule-title i {
            margin-right: 0.75rem;
            font-size: 1.25rem;
        }
        
        .add-rule-btn {
            background: none;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        .remove-rule-btn {
            background: none;
            border: none;
            color: var(--danger-color);
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* User Agent Selector */
        .user-agent-selector {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        
        .agent-btn {
            padding: 0.75rem 1.25rem;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            background-color: white;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .agent-btn:hover {
            border-color: var(--primary-color);
            background-color: rgba(44, 125, 160, 0.05);
        }
        
        .agent-btn.active {
            border-color: var(--primary-color);
            background-color: rgba(44, 125, 160, 0.1);
        }
        
        /* Path Input */
        .path-input-group {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .path-input {
            flex: 1;
        }
        
        /* Layout Optimization */
        .main-content {
            display: flex;
            gap: 2rem;
        }
        
        .tool-column {
            flex: 0 0 70%;
            max-width: 70%;
        }
        
        .sidebar-column {
            flex: 0 0 30%;
            max-width: 30%;
        }
        
        @media (max-width: 991px) {
            .main-content {
                flex-direction: column;
            }
            
            .tool-column,
            .sidebar-column {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }
        
        /* Tool Input Area */
        .tool-input-area {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .input-group {
            margin-bottom: 1.5rem;
        }
        
        .action-buttons-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        /* Sitemap Section */
        .sitemap-section {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
        
        /* Test Section */
        .test-section {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            margin-top: 2.5rem;
        }
        
        .test-result {
            margin-top: 1.5rem;
            padding: 1.25rem;
            border-radius: 8px;
            background-color: var(--light-gray);
            font-family: 'Courier New', monospace;
            font-size: 1.05rem;
        }
        
        .test-success {
            color: var(--success-color);
        }
        
        .test-failure {
            color: var(--danger-color);
        }
        
        /* SEO Impact */
        .seo-impact {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .seo-item {
            flex: 1;
            min-width: 280px;
            padding: 1.5rem;
            border-radius: 10px;
            background-color: white;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .seo-item:hover {
            transform: translateY(-5px);
        }
        
        .seo-item i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .seo-item h5 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }
        
        /* Info Box */
        .info-box {
            background-color: rgba(44, 125, 160, 0.05);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
            font-size: 1.05rem;
        }
        
        /* Security Alert */
        .security-alert {
            background-color: #d4edda;
            border-left: 4px solid #28a745;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
            font-size: 1.05rem;
        }
        
        /* Spacing adjustments */
        .mb-5 {
            margin-bottom: 3rem !important;
        }
        
        .mb-4 {
            margin-bottom: 2.5rem !important;
        }
        
        .mb-3 {
            margin-bottom: 2rem !important;
        }
        
        .mt-4 {
            margin-top: 2.5rem !important;
        }
        
        .mt-5 {
            margin-top: 3rem !important;
        }
        
        .py-4 {
            padding-top: 2.5rem !important;
            padding-bottom: 2.5rem !important;
        }
        
        .py-3 {
            padding-top: 2rem !important;
            padding-bottom: 2rem !important;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .tool-card {
                padding: 1.5rem;
            }
            
            .form-control {
                padding: 0.9rem;
            }
            
            .btn-primary, .btn-outline-secondary {
                padding: 0.9rem 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .tool-card {
                padding: 1.25rem;
            }
            
            .action-buttons-row {
                flex-direction: column;
            }
            
            .path-input-group {
           //     flex-direction: column;
            }
        }
		.usage-step {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
    background-color: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgb(0 0 0 / 5%);
    transition: transform 0.3s;
}.step-number {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1.1rem;
}.step-content {
    flex: 1;
}.step-content .code-example {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}
    