
  
        /* Component Cards */
        .component-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);
        }
        
        .component-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .component-title i {
            margin-right: 0.75rem;
            font-size: 1.25rem;
        }
        
        .component-content {
            font-family: 'Courier New', monospace;
            padding: 1rem;
            background-color: #f8f9fa;
            border-radius: 6px;
            border: 1px solid #e9ecef;
        }
        
        .component-value {
            font-weight: 600;
            color: var(--primary-color);
            word-break: break-all;
        }
        
        .component-description {
            color: var(--text-muted);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        
        /* Query Parameters Table */
        .params-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }
        
        .params-table th {
            background-color: var(--light-gray);
            text-align: left;
            padding: 0.75rem;
            font-weight: 600;
            border-bottom: 1px solid var(--border-color);
        }
        
        .params-table td {
            padding: 0.75rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .params-table tr:hover {
            background-color: rgba(44, 125, 160, 0.05);
        }
        
        .param-name {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .param-value {
            word-break: break-all;
        }
        
        /* 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;
        }
        
        /* 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: 576px) {
            .tool-card {
                padding: 1.25rem;
            }
            
            .action-buttons-row {
                flex-direction: column;
            }
        }
    