.elementor-5596 .elementor-element.elementor-element-05e49b5{--display:flex;--margin-top:20px;--margin-bottom:20px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5596 .elementor-element.elementor-element-75fa91b > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-75fa91b */:root {
            --primary: #4361ee;
            --primary-dark: #3a0ca3;
            --secondary: #4cc9f0;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #4bb543;
            --danger: #e63946;
            --border-radius: 6px;
            --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: var(--dark);
            min-height: 100vh;
     
            line-height: 1.4;
        }
        
        .container {
            max-width: 1600px;
            margin: 0 auto;
        }
        
        header {
            text-align: center;
            margin-bottom: 20px;
            color: white;
        }
        
        h1 {
            font-size: 1.8rem;
            margin-bottom: 5px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .subtitle {
            font-size: 0.9rem;
            opacity: 0.9;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .app-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 20px;
            height: 650px;
            width: 100%;
            padding: 25px;
        }
        
        .editor-section, .preview-section {
            flex: 1;
            min-width: 380px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .section-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        
        .preview-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        
        .preview-title {
            font-size: 1.2rem;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .preview-title i {
            color: var(--primary);
        }
        
        .preview-controls {
            display: flex;
            gap: 10px;
        }
        
        textarea {
            width: 100%;
            flex-grow: 1;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: 'Courier New', monospace;
            font-size: 14px;
            resize: none;
            transition: border-color 0.3s;
            line-height: 1.4;
            min-height: 500px;
            color: #000000; /* Changed to black */
        }
        
        textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
            color:#000000;
        }
        
        .preview-container {
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            flex-grow: 1;
            overflow: hidden;
            padding: 0;
            background-color: #f9f9f9;
            position: relative;
            min-height: 500px;
        }
        
        #preview {
            width: 100%;
            height: 100%;
            border: none;
            overflow-y: auto;
        }
        
        button {
            padding: 10px 16px;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-1px);
        }
        
        .btn-success {
            background-color: var(--success);
            color: white;
        }
        
        .btn-success:hover {
            background-color: #3a9c32;
            transform: translateY(-1px);
        }
        
        .btn-danger {
            background-color: var(--danger);
            color: white;
        }
        
        .btn-danger:hover {
            background-color: #d00000;
        }
        
        .status {
            margin-top: 15px;
            padding: 10px;
            border-radius: var(--border-radius);
            text-align: center;
            display: none;
            font-size: 0.9rem;
        }
        
        .status.success {
            background-color: #d4edda;
            color: #155724;
            display: block;
        }
        
        .status.error {
            background-color: #f8d7da;
            color: #721c24;
            display: block;
        }
        
        @media (max-width: 768px) {
            .app-container {
                flex-direction: column;
                height: auto;
                padding: 15px;
            }
            
            h1 {
                font-size: 1.5rem;
            }
            
            .editor-section, .preview-section {
                min-width: 100%;
                height: 500px;
            }
            
            .preview-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .preview-controls {
                width: 100%;
                justify-content: space-between;
            }
            
            button {
                flex: 1;
                justify-content: center;
            }
            
            textarea {
                min-height: 380px;
            }
            
            .preview-container {
                min-height: 450px;
            }
            
            #preview {
                height: 450px;
            }
        }
        
        @media (max-width: 480px) {
            .editor-section, .preview-section {
                height: 550px;
            }
            
            .preview-container {
                min-height: 500px;
            }
            
            #preview {
                height: 500px;
            }
            
            textarea {
                min-height: 420px;
            }
        }/* End custom CSS */