    
        /* JSON Editor Area */
        .editor-container {
            position: relative;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        
        .editor-header {
            background-color: var(--light-gray);
            padding: 0.75rem 1rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .editor-title {
            font-weight: 600;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .editor-actions {
            display: flex;
            gap: 0.5rem;
        }
        
        .editor-btn {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 0.25rem 0.5rem;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .editor-btn:hover {
            background-color: var(--light-gray);
        }
        
        .editor-content {
            position: relative;
            height: 300px;
        
        }
        
        #jsonInput {
            width: 100%;
            height: 100%;
            padding: 1rem;
            border: none;
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            resize: none;
            outline: none;
            white-space: pre;
            tab-size: 4;
        }
        
        #jsonOutput {
            width: 100%;
            height: 100%;
            padding: 1rem;
            border: none;
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            background-color: var(--light-gray);
            white-space: pre;
            overflow: auto;
        }
        
        /* JSON Syntax Highlighting */
        .json-key {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .json-string {
            color: var(--success-color);
        }
        
        .json-number {
            color: #3498db;
        }
        
        .json-boolean {
            color: #9b59b6;
        }
        
        .json-null {
            color: var(--warning-color);
        }
        
        /* Error Highlighting */
        .error-line {
            background-color: rgba(231, 76, 60, 0.1);
            border-left: 3px solid var(--error-color);
        }
        
        .error-message {
            color: var(--error-color);
            font-weight: 600;
            padding: 0.5rem 1rem;
            background-color: rgba(231, 76, 60, 0.1);
            border-radius: 4px;
            margin-top: 1rem;
        }
          .tips-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
          //  justify-content: center;
        }
        
        /* Tree View */
        .tree-view {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 1rem;
            background-color: white;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            max-height: 400px;
            overflow: auto;
        }
        
        .tree-node {
            margin-left: 1.5rem;
            position: relative;
        }
        
        .tree-node::before {
            content: "";
            position: absolute;
            left: -15px;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: var(--border-color);
        }
        
        .tree-node:last-child::before {
            height: 50%;
        }
        
        .tree-node::after {
            content: "";
            position: absolute;
            left: -15px;
            top: 50%;
            width: 15px;
            height: 1px;
            background-color: var(--border-color);
        }
        
        .tree-toggle {
            cursor: pointer;
            margin-right: 0.5rem;
            color: var(--text-muted);
        }
        
        .tree-key {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .tree-value {
            color: var(--text-color);
        }
        
        .tree-string {
            color: var(--success-color);
        }
        
        .tree-number {
            color: #3498db;
        }
        
        .tree-boolean {
            color: #9b59b6;
        }
        
        .tree-null {
            color: var(--warning-color);
        }
        
        .tree-collapsed > .tree-children {
            display: none;
        }
        
        /* Result Area */
        .result-container {
            background-color: var(--light-gray);
            border-radius: 6px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            position: relative;
            border: 1px solid var(--border-color);
        }
        
        .result-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
           color: var(--primary-color);
        }
        
        .result-content {
            font-family: 'Courier New', monospace;
            word-break: break-all;
            padding: 12px;
            background-color: white;
            border-radius: 4px;
            border: 1px solid #eee;
            font-size: 0.95rem;
            min-height: 100px;
            line-height: 1.8;
        }
        
        .copy-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 0.4rem 0.75rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .copy-btn:hover {
            background-color: var(--light-gray);
        }
        
        /* Content Sections */
        .section-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .usage-step {
            display: flex;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }
        
        .step-number {
            width: 28px;
            height: 28px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .info-box {
            background-color: rgba(44, 125, 160, 0.05);
            border-left: 3px solid var(--primary-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        
        .security-alert {
            background-color: #d4edda;
            border-left: 3px solid #28a745;
            padding: 4px 0;
            margin: 1.5rem 0;
        }
       
        /* Content Enhancements */
        .feature-box {
            background-color: rgba(44, 125, 160, 0.05);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid var(--border-color);
        }
        
        .feature-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .example-box {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid var(--border-color);
        }
        
        .example-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .example-content {
            font-family: 'Courier New', monospace;
            background-color: var(--light-gray);
            padding: 1rem;
            border-radius: 4px;
            margin-bottom: 1rem;
        }
        
        .example-description {
            margin-top: 1rem;
        }
        
        .case-study {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        
        .case-study-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .case-study-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .case-study-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            flex-shrink: 0;
        }
        
        /* JSON Learning Guide */
        .learning-guide {
            background-color: rgba(44, 125, 160, 0.05);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 3px solid var(--primary-color);
        }
        
        .guide-step {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .guide-step:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }
        
        .guide-step-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        /* FAQ Section */
        .faq-container {
            margin: 1.5rem 0;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1rem;
        }
        
        .faq-question {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        /* Performance Tips */
        .tip-box {
             flex: 0 0 calc(50% - 30px);
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem; 
            border: 1px solid var(--border-color);
        }
        
        .tip-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .tip-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem; 
        }
        
        .tip-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            flex-shrink: 0;
        }
		 
        .options-panel {
            background-color: var(--light-gray);
            border-radius: 6px;
            padding: 1rem;
            margin: 1rem 0;
            border: 1px solid var(--border-color);
        }
        
        .options-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }
        
        .options-content {
            display: none;  
        }
        
        .form-check {
            margin-bottom: 0.5rem;
        }
        
        .option-group {
            margin-bottom: 1rem;
        }
        
        .option-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: block;
        }
    