.elementor-4529 .elementor-element.elementor-element-4af2b48{--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;}body.elementor-page-4529:not(.elementor-motion-effects-element-type-background), body.elementor-page-4529 > .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-e05e5fe */:root {
            --primary: #0066cc;
            --primary-light: #e6f2ff;
            --dark: #333;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
            --info: #17a2b8;
            --warning: #ffc107;
            --danger: #dc3545;
        }
        
        body {
            background-color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            padding-bottom: 30px;
        }
        
        .app-header {
            text-align: center;
            padding: 30px 0 15px;
            margin-bottom: 30px;
            animation: zoomIn 0.8s ease-out;
        }
        
        .app-header h1 {
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 2.5rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .app-header p {
            color: #666;
            font-size: 1.1rem;
            margin: 0 auto;
            max-width: 600px;
        }
        
        .upload-area {
            border: 3px dashed #ced4da;
            border-radius: 18px;
            padding: 3rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            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;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            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);
        }
        
        .upload-area:hover {
            border-color: var(--primary);
            background-color: #f8fbff;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,102,204,0.15);
        }
        
        .upload-area.active {
            border-color: var(--primary);
            background-color: var(--primary-light);
            box-shadow: inset 0 0 15px rgba(0,102,204,0.1);
        }
        
        /* Animations */
        @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);
            }
        }
        
        @keyframes slideInRight {
            0% {
                opacity: 0;
                transform: translateX(30px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-30px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes scaleIn {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
        
        /* Section animations */
        .cropper-section {
            animation: zoomIn 0.6s ease-out;
        }
        
        .crop-results {
            animation: zoomIn 0.6s ease-out;
        }
        
        .crop-result {
            animation: zoomIn 0.5s ease-out;
        }
        
        .preview-column {
            animation: zoomIn 0.7s ease-out;
        }
        
        .cropper-container {
            max-width: 100%;
            height: 400px;
            display: block;
            border-radius: 0;
            border: 1px solid #e0e0e0;
            background-color: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin: 0 auto;
        }
        
        .btn-crop {
            background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
            border: none;
            color: white !important;
            font-weight: 600;
            padding: 14px 24px;
            font-size: 1.1rem;
            box-shadow: 0 6px 12px rgba(0, 102, 204, 0.25);
            transition: all 0.3s;
            margin-top: 10px;
            width: 100%;
            border-radius: 0 !important;
            /* Added 5px padding */
            padding: 5px !important;
        }
        
        .btn-crop:hover {
            background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0, 102, 204, 0.3);
        }
        
        .btn-new-image {
            background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
            border: none;
            color: white !important;
            font-weight: 600;
            padding: 14px 24px;
            font-size: 1.1rem;
            box-shadow: 0 6px 12px rgba(108, 117, 125, 0.25);
            transition: all 0.3s;
            margin-top: 10px;
            width: 100%;
            border-radius: 0 !important;
            /* Added 5px padding */
            padding: 5px !important;
        }
        
        .btn-new-image:hover {
            background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(108, 117, 125, 0.3);
        }
        
        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
        
        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            min-width: 140px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            white-space: nowrap;
            border-radius: 0 !important;
            /* Added 5px padding */
            padding: 5px !important;
        }
        
        .action-btn i {
            font-size: 1.1rem;
        }
        
        .btn-download {
            background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
            color: white !important;
            border: none;
        }
        
        .btn-download:hover {
            background: linear-gradient(135deg, #218838 0%, #155724 100%);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(40, 167, 69, 0.25);
        }
        
        .btn-copy {
            background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
            color: white !important;
            border: none;
        }
        
        .btn-copy:hover {
            background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 102, 204, 0.25);
        }
        
        .btn-upload-new {
            background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
            color: #212529 !important;
            border: none;
        }
        
        .btn-upload-new:hover {
            background: linear-gradient(135deg, #e0a800 0%, #c69500 100%);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 193, 7, 0.25);
        }
        
        .dropdown-menu .dropdown-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            font-size: 0.95rem;
            transition: all 0.2s;
            border-radius: 0;
        }
        
        .dropdown-menu .dropdown-item:hover {
            background-color: #f8f9fa;
        }
        
        .dropdown-menu .dropdown-item i {
            font-size: 1.1rem;
            width: 20px;
        }
        
        .dropdown-menu {
            border-radius: 0;
            border: 1px solid #e0e0e0;
            padding: 0 !important; /* Remove padding to make dropdown same size as button */
        }
        
        /* Add separator lines between dropdown items */
        .dropdown-menu .dropdown-item:not(:last-child) {
            border-bottom: 1px solid #e0e0e0;
        }
        
        .card-header {
            background: linear-gradient(to right, #f0f8ff, #e6f2ff);
            border-bottom: 1px solid #e0e0e0;
            padding: 1rem 1.5rem;
            border-radius: 0 !important;
        }
        
        .card-header h5 {
            margin-bottom: 0;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            text-align: center;
        }
        
        .mobile-spacer {
            height: 15px;
            display: none;
        }
        
        .form-control, .form-select {
            padding: 12px 15px;
            border-radius: 0;
            border: 1px solid #d1d1d1;
            font-size: 1.05rem;
            text-align: center;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
        }
        
        .card {
            border-radius: 0;
            overflow: hidden;
            border: 1px solid #e0e0e0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .preview-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            padding: 30px;
            text-align: center;
        }
        
        .crop-results {
            display: none;
            text-align: center;
            padding: 30px;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid #e0e0e0;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 0;
        }
        
        .crop-result {
            max-width: 90%;
            max-height: 400px;
            border: 1px solid #ddd;
            border-radius: 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: block;
            margin: 0 auto 20px;
        }
        
        .tool-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            background: white;
            border: 1px solid #ddd;
            cursor: pointer;
            transition: all 0.2s;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            border-radius: 0 !important;
        }
        
        .tool-btn:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,102,204,0.1);
        }
        
        .controls-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .preview-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            margin-top: 20px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            border-radius: 0;
        }
        
        .preview-title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .preview-image {
            max-width: 100%;
            max-height: 200px;
            border: 1px solid #ddd;
            border-radius: 0;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        
        /* Centered result section */
        #resultPlaceholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 30px;
        }
        
        .result-card {
            transition: all 0.3s;
            max-width: 1200px;
            margin: 0 auto 30px;
            border-radius: 0;
        }
        
        .result-card.active {
            box-shadow: 0 0 25px rgba(0, 102, 204, 0.3);
            border-color: var(--primary);
        }
        
        .download-dropdown {
            position: relative;
        }
        
        .download-dropdown .dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            font-weight: 600;
            font-size: 1rem;
            min-width: 140px;
            text-align: center;
            border-radius: 0 !important;
            /* Added 5px padding */
            padding: 5px !important;
        }
        
        .download-dropdown .dropdown-menu {
            min-width: 160px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 1px solid #e0e0e0;
            padding: 5px 0;
            border-radius: 0;
            width: 100% !important; /* Make dropdown same width as button */
            min-width: 0 !important; /* Remove min-width constraint */
        }
        
        .download-dropdown .dropdown-menu.show {
            width: 100% !important; /* Ensure it shows with same width as button */
            min-width: 0 !important;
        }
        
        .cropper-section {
            max-width: 1200px;
            margin: 0 auto 30px;
            background: white;
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
            padding: 30px;
            border: 1px solid #e0e0e0;
            border-radius: 0;
        }
        
        .cropper-section .row {
            margin-bottom: 20px;
        }
        
        .preview-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            width: 100%;
        }
        
        .preview-buttons .btn {
            flex: 1;
            white-space: nowrap;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 20px;
            border-radius: 0 !important;
        }
        
        .preview-buttons .btn i {
            font-size: 1.2rem;
        }
        
        .preview-buttons .btn span {
            font-size: 1.05rem;
        }
        
        .preview-info {
            margin-top: 15px;
            text-align: center;
        }
        
        .preview-size {
            font-weight: bold;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .preview-label {
            font-size: 0.9rem;
            color: #666;
        }
        
        .results-title {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-light);
            width: 100%;
        }
        
        .results-title i {
            margin-right: 10px;
            font-size: 1.9rem;
        }
        
        @media (max-width: 992px) {
            .cropper-container {
                height: 350px;
            }
            
            .upload-area, .crop-results {
                max-width: 90%;
                padding: 2rem;
            }
            
            .action-btn {
                min-width: 130px;
                padding: 11px 18px;
            }
            
            .preview-buttons .btn {
                padding: 12px 16px;
                gap: 6px;
            }
            
            .results-title {
                font-size: 1.6rem;
            }
            
            .results-title i {
                font-size: 1.7rem;
            }
        }
        
        @media (max-width: 768px) {
            .cropper-section, .upload-area, .result-card, .crop-results {
                padding: 20px;
            }
            
            .upload-area, .crop-results {
                padding: 1.5rem;
            }
            
            .app-header {
                padding: 20px 0 10px;
            }
            
            .app-header h1 {
                font-size: 2rem;
            }
            
            .mobile-spacer {
                display: block;
            }
            
            .cropper-container {
                height: 300px;
            }
            
            .tool-btn span {
                display: none;
            }
            
            .preview-buttons {
                flex-direction: row;
            }
            
            .preview-buttons .btn {
                font-size: 0.9rem;
                padding: 10px 12px;
                gap: 5px;
            }
            
            .preview-buttons .btn i {
                font-size: 1.1rem;
                margin-right: 0;
            }
            
            .preview-buttons .btn span {
                font-size: 0.95rem;
            }
            
            .action-buttons {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .action-btn {
                min-width: 120px;
                padding: 10px 15px;
                font-size: 0.95rem;
                flex: 1;
            }
            
            .download-dropdown .dropdown-toggle {
                min-width: 120px;
                padding: 10px 15px;
                font-size: 0.95rem;
            }
            
            .results-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
                padding-bottom: 12px;
            }
            
            .results-title i {
                font-size: 1.6rem;
                margin-right: 8px;
            }
        }
        
        @media (max-width: 576px) {
            .cropper-section, .upload-area, .result-card, .crop-results {
                padding: 15px;
            }
            
            .upload-area, .crop-results {
                padding: 1.2rem;
            }
            
            .app-header h1 {
                font-size: 1.8rem;
            }
            
            .app-header p {
                font-size: 1rem;
            }
            
            .btn-crop, .btn-new-image {
                font-size: 0.95rem;
                padding: 12px 8px;
            }
            
            .preview-buttons .btn {
                padding: 10px 8px;
                gap: 4px;
            }
            
            .preview-buttons .btn i {
                font-size: 1rem;
            }
            
            .preview-buttons .btn span {
                font-size: 0.9rem;
            }
            
            .card-header {
                flex-direction: column;
                align-items: center;
            }
            
            .card-header h5 {
                margin-bottom: 12px;
            }
            
            .action-buttons {
                width: 100%;
                flex-direction: column;
                gap: 10px;
            }
            
            .action-btn, .download-dropdown .dropdown-toggle {
                width: 100%;
                min-width: 100%;
                padding: 12px;
                font-size: 1rem;
            }
            
            .cropper-container {
                height: 250px;
            }
            
            .preview-buttons {
                flex-direction: row;
                gap: 8px;
            }
            
            .preview-buttons .btn span {
                display: inline;
            }
            
            .results-title {
                font-size: 1.4rem;
                margin-bottom: 18px;
                padding-bottom: 10px;
            }
            
            .results-title i {
                font-size: 1.5rem;
                margin-right: 6px;
            }
        }
        
        @media (max-width: 480px) {
            .preview-buttons {
                flex-direction: row;
                gap: 6px;
            }
            
            .preview-buttons .btn {
                font-size: 0.8rem;
                padding: 8px 6px;
                gap: 3px;
            }
            
            .preview-buttons .btn i {
                font-size: 0.9rem;
            }
            
            .preview-buttons .btn span {
                font-size: 0.85rem;
            }
            
            .results-title {
                font-size: 1.3rem;
            }
            
            .results-title i {
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 380px) {
            .preview-buttons {
                flex-direction: row;
            }
            
            .preview-buttons .btn {
                font-size: 0.75rem;
                padding: 6px 4px;
                gap: 2px;
            }
            
            .preview-buttons .btn i {
                font-size: 0.85rem;
            }
            
            .preview-buttons .btn span {
                font-size: 0.8rem;
                display: inline;
            }
            
            .results-title {
                font-size: 1.2rem;
            }
            
            .results-title i {
                font-size: 1.3rem;
            }
        }/* End custom CSS */