.elementor-4404 .elementor-element.elementor-element-5806a3f{--display:flex;--margin-top:20px;--margin-bottom:20px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}body.elementor-page-4404:not(.elementor-motion-effects-element-type-background), body.elementor-page-4404 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E9EFFA;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-dda2218 *//* Elementor-Compatible OCR App CSS */
        /* Copy this entire CSS block to Elementor's Custom CSS section */
        
        :root {
            --primary: #0066cc;
            --primary-light: #e6f2ff;
            --progress-blue: #0066cc;
        }
        
        /* Remove body styling for Elementor compatibility */
        .quickocr-app * {
            box-sizing: border-box;
        }
        
        .quickocr-app {
            width: 100%;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* UPDATED APP HEADER STYLE from Image Crop Pro */
        .quickocr-header {
            text-align: center;
            padding: 30px 0 15px;
            margin-bottom: 30px;
            animation: zoomIn 0.8s ease-out;
            width: 100%;
            max-width: 800px;
        }
        
        .quickocr-header h2 {
            color: #0066cc;
            margin-bottom: 8px;
            font-size: 2.5rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .quickocr-header p {
            color: #666;
            font-size: 1.1rem;
            margin: 0 auto;
            max-width: 600px;
        }
        
        /* UPDATED UPLOAD AREA STYLE from Image Crop Pro */
        .quickocr-upload-area {
            border: 3px dashed #ced4da;
            border-radius: 18px;
            padding: 3rem;
            text-align: center;
            cursor: pointer;
            background-color: white;
            margin-bottom: 30px;
            position: relative;
            transition: all 0.4s ease;
            background-image: radial-gradient(circle at 10px 10px, rgba(0,102,204,0.05) 1px, transparent 1px);
            background-size: 20px 20px;
            width: 100%;
            max-width: 850px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            animation: flyInFromBottom 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            opacity: 0;
            transform: translateY(50px);
        }
        
        /* Animations from Image Crop Pro */
        @keyframes flyInFromBottom {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes zoomIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.05);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .quickocr-upload-area:hover {
            border-color: var(--primary);
            background-color: #f8fbff;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,102,204,0.15);
        }
        
        .quickocr-upload-area.active {
            border-color: var(--primary);
            background-color: var(--primary-light);
            box-shadow: inset 0 0 15px rgba(0,102,204,0.1);
        }
        
        .quickocr-image-preview {
            max-width: 100%;
            margin: 1rem 0;
            display: none;
            border-radius: 5px;
        }
        
        .quickocr-text-result {
            min-height: 200px;
            white-space: pre-wrap;
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 15px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 15px;
            line-height: 1.6;
            color: #333;
            text-align: left;
            overflow-wrap: break-word;
            display: none;
            width: 100%;
        }
        
        .quickocr-text-result:empty:before {
            content: attr(placeholder);
            color: #aaa;
        }
        
        /* Enhanced Progress Bar with stripes and blue color */
        .quickocr-progress {
            height: 20px; /* Slightly taller */
            display: none;
            margin-bottom: 20px;
            border-radius: 10px;
            width: 100%;
            max-width: 800px;
            background-color: #e9ecef;
            overflow: hidden;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
            border: 1px solid #dee2e6;
        }
        
        .quickocr-progress-bar {
            background: linear-gradient(
                45deg,
                var(--progress-blue) 25%,
                #0088ff 25%,
                #0088ff 50%,
                var(--progress-blue) 50%,
                var(--progress-blue) 75%,
                #0088ff 75%,
                #0088ff
            );
            background-size: 30px 30px;
            transition: width 0.4s ease;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.85rem;
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            box-shadow: 0 2px 10px rgba(0,102,204,0.3);
            animation: progressStripes 1s linear infinite;
        }
        
        @keyframes progressStripes {
            0% { background-position: 0 0; }
            100% { background-position: 30px 0; }
        }
        
        /* Extract button styling - Now separate from upload area */
        .quickocr-extract-btn-container {
            width: 100%;
            max-width: 800px;
            margin-bottom: 20px;
            display: none; /* Hidden by default */
            animation: slideUp 0.5s ease-out;
        }
        
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .quickocr-btn-ocr {
            background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
            border: none;
            color: white !important;
            font-weight: 600;
            width: 100%;
            padding: 14px;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 15px rgba(0,102,204,0.3);
            position: relative;
            overflow: hidden;
        }
        
        .quickocr-btn-ocr:hover {
            background: linear-gradient(135deg, #0052a3 0%, #007acc 100%);
            color: white !important;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 20px rgba(0,102,204,0.4);
        }
        
        .quickocr-btn-ocr:active {
            transform: translateY(0) scale(0.98);
        }
        
        .quickocr-btn-ocr:disabled {
            background: linear-gradient(135deg, #6c757d 0%, #8a939b 100%);
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 3px 10px rgba(108,117,125,0.2);
        }
        
        .quickocr-btn-ocr::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.7s;
        }
        
        .quickocr-btn-ocr:hover::after {
            left: 100%;
        }
        
        .quickocr-action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 10px;
        }
        
        .quickocr-action-buttons .quickocr-btn {
            flex: 1 1 auto;
            min-width: 70px;
        }
        
        .quickocr-stats-container {
            display: flex;
            justify-content: space-between;
            background-color: #f8f9fa;
            padding: 10px 15px;
            border-radius: 5px;
            margin-top: 10px;
            border: 1px solid #dee2e6;
            gap: 10px;
            width: 100%;
        }
        
        .quickocr-stat-item {
            text-align: center;
            flex: 1;
        }
        
        .quickocr-stat-value {
            font-weight: bold;
            color: #0066cc;
            font-size: 1.1rem;
        }
        
        .quickocr-stat-label {
            font-size: 0.8rem;
            color: #666;
        }
        
        .quickocr-mobile-spacer {
            height: 10px;
            display: none;
        }
        
        /* Preview container styling */
        .quickocr-preview-container {
            text-align: center;
            margin-bottom: 20px;
            max-height: 500px;
            overflow-y: auto;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            padding: 10px;
            background-color: #f8f9fa;
            width: 100%;
        }
        
        .quickocr-preview-image {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
        
        .quickocr-preview-title {
            color: #0066cc;
            font-size: 1.2rem;
            margin-bottom: 10px;
            width: 100%;
            text-align: center;
        }
        
        /* Result card styling */
        .quickocr-result-card {
            width: 100%;
            max-width: 800px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-top: 20px;
            display: none;
            animation: slideUp 0.5s ease-out;
        }
        
        .quickocr-result-header {
            background-color: #f0f8ff;
            border-bottom: 1px solid #e0e0e0;
            padding: 0.75rem 1rem;
            border-radius: 8px 8px 0 0;
            display: none;
        }
        
        .quickocr-result-body {
            padding: 1.5rem;
            display: none;
        }
        
        /* Result actions - Simplified download button */
        .quickocr-result-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 15px;
            justify-content: center;
        }
        
        .quickocr-result-actions .quickocr-btn {
            flex: 1 1 auto;
            min-width: 120px;
            max-width: 140px;
            text-align: center;
            padding: 0.375rem 0.75rem;
            border-width: 1px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        
        /* Button styling */
        .quickocr-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        #quickocr-copyBtn {
            color: #0066cc !important;
            border: 1px solid #0066cc !important;
            background-color: transparent;
        }
        
        #quickocr-copyBtn:hover {
            color: white !important;
            background-color: #0066cc !important;
            border-color: #0066cc !important;
        }
        
        #quickocr-copyBtn.quickocr-success {
            color: white !important;
            background-color: #28a745 !important;
            border-color: #28a745 !important;
        }
        
        /* Download button styling - Direct TXT download (no dropdown) */
        #quickocr-downloadBtn {
            color: #28a745 !important;
            border: 1px solid #28a745 !important;
            background-color: transparent;
        }
        
        #quickocr-downloadBtn:hover {
            color: white !important;
            background-color: #28a745 !important;
            border-color: #28a745 !important;
        }
        
        #quickocr-uploadNewBtn {
            color: #fd7e14 !important;
            border: 1px solid #fd7e14 !important;
            background-color: transparent;
        }
        
        #quickocr-uploadNewBtn:hover {
            color: white !important;
            background-color: #fd7e14 !important;
            border-color: #fd7e14 !important;
        }
        
        /* Preview card */
        .quickocr-preview-card {
            width: 100%;
            max-width: 800px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            display: none;
            animation: slideUp 0.5s ease-out;
        }
        
        .quickocr-preview-card-body {
            padding: 1.5rem;
        }
        
        /* File input styling */
        .quickocr-file-input {
            display: none;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .quickocr-app {
                padding: 10px;
            }
            
            .quickocr-upload-area {
                padding: 2rem;
                margin-bottom: 20px;
                max-width: 90%;
            }
            
            .quickocr-upload-area h3 {
                font-size: 1.3rem;
            }
            
            .quickocr-upload-area p {
                font-size: 0.9rem !important;
            }
            
            .quickocr-upload-area i {
                font-size: 3rem !important;
            }
            
            .quickocr-header {
                margin-bottom: 15px;
                padding: 20px 0 10px;
            }
            
            .quickocr-header h2 {
                font-size: 2rem;
            }
            
            .quickocr-header p {
                font-size: 1rem;
            }
            
            .quickocr-stats-container {
                flex-direction: column;
                gap: 8px;
            }
            
            .quickocr-text-result {
                font-size: 14px;
                padding: 12px;
                min-height: 180px;
            }
            
            .quickocr-mobile-spacer {
                display: block;
            }
            
            .quickocr-preview-container {
                max-height: 400px;
            }
            
            .quickocr-result-actions {
                gap: 4px;
            }
            
            .quickocr-result-actions .quickocr-btn {
                min-width: 110px;
                max-width: 130px;
                font-size: 0.9rem;
            }
            
            .quickocr-progress {
                height: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .quickocr-upload-area {
                padding: 1.5rem;
            }
            
            .quickocr-upload-area i {
                font-size: 2.5rem !important;
            }
            
            .quickocr-upload-area h3 {
                font-size: 1.1rem;
                margin: 15px 0;
            }
            
            .quickocr-upload-area p {
                font-size: 0.8rem !important;
            }
            
            .quickocr-header h2 {
                font-size: 1.8rem;
            }
            
            .quickocr-header p {
                font-size: 0.95rem;
            }
            
            .quickocr-btn-ocr {
                font-size: 0.95rem;
                padding: 0.75rem;
            }
            
            .quickocr-text-result {
                min-height: 150px;
                padding: 10px;
                font-size: 13px;
            }
            
            .quickocr-stat-value {
                font-size: 1rem;
            }
            
            .quickocr-preview-container {
                max-height: 350px;
            }
            
            .quickocr-result-actions {
                gap: 3px;
            }
            
            .quickocr-result-actions .quickocr-btn {
                min-width: 100px;
                max-width: 120px;
                font-size: 0.85rem;
                padding: 0.35rem 0.5rem;
            }
            
            .quickocr-progress {
                height: 16px;
            }
        }
        
        @media (max-width: 400px) {
            .quickocr-result-actions .quickocr-btn {
                min-width: 90px;
                max-width: 110px;
                font-size: 0.8rem;
                padding: 0.3rem 0.4rem;
            }
            
            .quickocr-btn i {
                margin-right: 3px;
            }
            
            .quickocr-preview-container {
                max-height: 300px;
            }
        }/* End custom CSS */