.elementor-3915 .elementor-element.elementor-element-c58e865{--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-3915 .elementor-element.elementor-element-b6750e3{--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-3915 .elementor-element.elementor-element-ae19254{--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-3915 .elementor-element.elementor-element-473859f{--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-3aef9ff */:root {
    --primary-brand: #3b82f6;
    --border-color: #dee2e6;
    --background-light: #f8f9fa;
    --secondary-gray: #6c757d;
    --danger: #ef4444;
}

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

/* Workspace */
.workspace { background: white; padding: 2rem; border-radius: 8px; border: 1px solid var(--border-color); }

/* Toolbar */
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-color); }

/* Grid Layout */
.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Page Card */
.page-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    cursor: grab;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.page-card:active { cursor: grabbing; }
.page-card:hover { box-shadow: 0 8px 15px rgba(0,0,0,0.1); transform: translateY(-2px); z-index: 5; }

/* Dragging States */
.page-card.dragging { 
    opacity: 0.5; 
    border: 2px dashed var(--primary-brand); 
    background: #eef2ff;
}
.page-card.drag-over {
    border-left: 4px solid var(--primary-brand);
}

/* Canvas Area */
.card-canvas-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    position: relative;
}

.card-canvas-wrapper canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Hover Overlay Actions */
.card-actions {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: 6px 6px 0 0;
}

.page-card:hover .card-actions { opacity: 1; }

.action-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    background: white;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.action-btn:hover { transform: scale(1.1); }
.action-btn.delete { color: var(--danger); }
.action-btn.delete:hover { background: var(--danger); color: white; }
.action-btn.rotate { color: var(--primary-brand); }
.action-btn.rotate:hover { background: var(--primary-brand); color: white; }

/* Page Number */
.page-number {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    color: var(--secondary-gray);
    border-top: 1px solid var(--border-color);
    background: white;
    border-radius: 0 0 6px 6px;
    user-select: none;
}

/* Drop Zone */
.drop-zone { 
    border: 2px dashed var(--border-color); 
    border-radius: 8px; 
    padding: 3rem; 
    text-align: center; 
    cursor: pointer; 
    background: white;
    transition: background 0.2s;
}
.drop-zone:hover { background: #f0f7ff; border-color: var(--primary-brand); }

/* Footer */
.action-footer { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.filename-input { flex: 1; min-width: 250px; }
.main-buttons { display: flex; gap: 1rem; }
.form-group label, .filename-input label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
.form-input { width: 100%; padding: 0.6rem; border: 1px solid var(--border-color); border-radius: 6px; }

/* Mobile */
@media (max-width: 768px) {
    .action-footer { flex-direction: column; align-items: stretch; }
    .main-buttons { flex-direction: column; }
}

/* Info Sections */
.info-section { background: white; padding: 2rem; border-radius: 8px; margin-top: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.info-section h3 { margin-bottom: 1rem; border-bottom: 1px solid var(--border-color); padding-bottom: 0.5rem; }
.how-to-list { padding-left: 1.5rem; }
.how-to-list li { margin-bottom: 0.5rem; }
.faq-item { margin-bottom: 1.5rem; }
.faq-item strong { display: block; margin-bottom: 0.25rem; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1be8771 *//* --- 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;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}
.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;
}
.faq-item p a {
    color: #0056b3;
    text-decoration: underline;
    font-weight: 500;
}

/* --- 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-6540e22 */<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%); /* Maintains Professionalism */
    transition: filter 0.2s;
}

/* Hover 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: 640px) {
    .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 */