.elementor-4585 .elementor-element.elementor-element-3a6fbb6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4585 .elementor-element.elementor-element-1ff7e01{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4585 .elementor-element.elementor-element-a95e4ab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-ce24303 */:root {
    --primary-brand: #e34f26;
    --primary-gradient: linear-gradient(135deg, #e34f26 0%, #f06529 100%);
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --text-main: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
}

* { box-sizing: border-box; }

.hidden { display: none !important; }
.full-width { width: 100%; }
.divider { height: 1px; background: var(--border-color); margin: 1.5rem 0; }

/* Workspace */
.workspace { 
    background: var(--white); 
    padding: 1.5rem; 
    border-radius: 16px; 
    border: 1px solid var(--border-color); 
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05); 
}

.editor-layout {
    display: flex;
    gap: 1.5rem;
    height: 700px;
}

/* 1. Code Editor */
.editor-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.panel-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.panel-header h3 { margin: 0; font-size: 1rem; color: var(--text-main); font-weight: 600; }
.header-actions { display: flex; gap: 10px; }
.link-btn { background: none; border: none; color: var(--primary-brand); cursor: pointer; text-decoration: underline; font-size: 0.85rem; font-weight: 600; }

.code-area {
    width: 100%;
    flex: 1;
    background: #1e1e1e;
    color: #ce9178; /* HTML Tag Color */
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    resize: none;
    line-height: 1.5;
    white-space: pre;
    overflow-wrap: normal;
    overflow-x: auto;
}
.code-area:focus { outline: 2px solid var(--primary-brand); }

/* 2. Preview Panel */
.preview-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #525659;
    border-radius: 8px;
    padding: 1rem;
    overflow: hidden;
}

.preview-panel .panel-header h3 { color: #fff; }

.paper-scroll-container {
    flex: 1;
    overflow: auto;
    display: flex;
    justify-content: center;
    padding: 20px;
    background: #525659;
}

/* THE PAPER SHEET (Accurate PDF Simulation) */
.paper-sheet {
    background: white;
    /* Base A4 dimensions at screen DPI */
    width: 210mm; 
    min-height: 297mm;
    padding: 10mm; /* Default Margin */
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    
    color: #000;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 12pt;
    line-height: 1.5;
    
    transform-origin: top center;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Formatting Defaults for Preview */
.paper-sheet h1 { border-bottom: 2px solid #333; padding-bottom: 5px; margin-top: 0; }
.paper-sheet img { max-width: 100%; height: auto; }
.paper-sheet table { width: 100%; border-collapse: collapse; margin: 15px 0; }
.paper-sheet td, .paper-sheet th { border: 1px solid #ccc; padding: 8px; }
.paper-sheet blockquote { border-left: 4px solid #ccc; padding-left: 15px; margin: 15px 0; color: #555; }

/* 3. Controls */
.controls-panel { 
    flex: 0 0 280px; 
    background: var(--bg-light); 
    padding: 1.5rem; 
    border-radius: 8px; 
    border: 1px solid var(--border-color);
    display: flex; flex-direction: column; overflow-y: auto;
}

.controls-panel h3 { margin-bottom: 1rem; font-size: 1.1rem; color: var(--text-main); border-bottom: 1px solid #cbd5e1; padding-bottom: 0.5rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--text-main); }
.form-input { width: 100%; height: 42px; padding: 0 10px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 0.95rem; background: white; }

.radio-group { display: flex; gap: 10px; }
.radio-card {
    flex: 1; border: 1px solid #cbd5e1; border-radius: 6px; padding: 8px;
    background: white; cursor: pointer; display: flex; align-items: center; gap: 6px; font-size: 0.9rem;
}
.radio-card input { accent-color: var(--primary-brand); }

/* Buttons */
.main-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 1rem; }
.primary-gradient { background: var(--primary-gradient); color: white; border: none; padding: 12px; border-radius: 6px; font-weight: 600; cursor: pointer; }
.btn-secondary { background: white; border: 1px solid #cbd5e1; color: var(--text-main); padding: 12px; border-radius: 6px; font-weight: 600; cursor: pointer; }

@media (max-width: 1024px) {
    .editor-layout { flex-direction: column; height: auto; }
    .editor-panel { height: 400px; }
    .preview-panel { height: 600px; }
    .controls-panel { width: 100%; flex: auto; }
}

.info-section { background: white; padding: 2.5rem; border-radius: 12px; margin-top: 2rem; border: 1px solid #e5e7eb; }
.info-section h3 { margin-bottom: 1.5rem; border-bottom: 1px solid #e5e7eb; padding-bottom: 0.8rem; }
.how-to-list li { margin-bottom: 0.8rem; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8d18c2c *//* --- Styling for All Content & Info Sections --- */

/* General container for the "How-To," "About," and "FAQ" sections */
.info-section {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 2rem 1rem;
    border-top: 1px solid #e9ecef;
}

/* Styles the main headings (h2) of these sections */
.info-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #212529;
    margin-bottom: 3rem;
}

/* --- How-To Guide --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}
.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #e33d3d; /* Red theme color */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}
.feature-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #343a40;
}
.feature-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

/* --- Professional About Section --- */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #343a40;
    margin-bottom: 1.5rem;
}
.about-content p:last-child {
    margin-bottom: 0;
}

/* --- Polished FAQ Section --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}
.faq-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.75rem;
}
.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .info-section h2 {
        font-size: 1.8rem;
    }
    .about-content p {
        font-size: 1.05rem; 
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4f69d5b */<style>
/* ============================================================
   UTILIX RELATED TOOLS: DASHBOARD PILLS
   ============================================================ */

.utilix-related-section {
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
}

.related-tools h3 {
    font-size: 1.15rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.tools-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.tool-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 100px; /* Modern pill shape */
    text-decoration: none;
    color: #4f46e5; /* Utilix Brand Indigo */
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.t-icon {
    font-size: 1.1rem;
    filter: grayscale(100%); /* Keeps it professional */
    transition: filter 0.2s;
}

/* Hover State: Premium Feedback */
.tool-link:hover {
    background: #4f46e5;
    color: #ffffff;
    border-color: #4f46e5;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.2);
}

.tool-link:hover .t-icon {
    filter: grayscale(0%); /* Emoji color pops on hover */
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .utilix-related-section {
        padding: 0 15px;
        margin: 25px auto;
    }
    .tools-grid {
        gap: 8px;
    }
    .tool-link {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}
</style>/* End custom CSS */