  /* Scoped Styles for WordPress Compatibility */
        #heic-converter-app {
            --primary: #4361ee;
            --primary-dark: #3a56d4;
            --secondary: #7209b7;
            --success: #4cc9f0;
            --warning: #ff9e00;
            --danger: #f72585;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --border: #dee2e6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: var(--dark);
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
        }
        
        #heic-converter-app *, #heic-converter-app *::before, #heic-converter-app *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        #heic-converter-app .container {
            width: 100%;
            max-width: 900px;
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        #heic-converter-app header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        #heic-converter-app header::before {
            content: "";
            position: absolute;
            top: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        #heic-converter-app header::after {
            content: "";
            position: absolute;
            bottom: -80px;
            right: -30px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }
        
        #heic-converter-app h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            position: relative;
            color:#ffffff!important;
            z-index: 1;
        }
        
        #heic-converter-app .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        #heic-converter-app .app-container {
            padding: 30px;
        }
        
        #heic-converter-app .upload-area {
            border: 2px dashed var(--border);
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            background-color: var(--light);
            transition: var(--transition);
            margin-bottom: 30px;
            cursor: pointer;
            position: relative;
        }
        
        #heic-converter-app .upload-area:hover, #heic-converter-app .upload-area.drag-over {
            border-color: var(--primary);
            background-color: rgba(67, 97, 238, 0.05);
            transform: translateY(-3px);
        }
        
        #heic-converter-app .upload-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        #heic-converter-app .upload-text {
            margin-bottom: 15px;
            font-size: 1.2rem;
            color: var(--gray);
        }
        
        #heic-converter-app .file-input {
            display: none;
        }
        
        #heic-converter-app .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            text-align: center;
        }
        
        #heic-converter-app .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        #heic-converter-app .btn:active {
            transform: translateY(0);
        }
        
        #heic-converter-app .btn:disabled {
            background: #adb5bd;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        #heic-converter-app .btn-convert {
            background: var(--secondary);
            margin: 0 10px;
        }
        
        #heic-converter-app .btn-convert:hover {
            background: #5e0a9c;
        }

        #heic-converter-app .format-selector {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 25px 0;
            flex-wrap: wrap;
        }
        
        #heic-converter-app .format-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            padding: 20px;
            border-radius: 12px;
            transition: var(--transition);
            border: 2px solid var(--light-gray);
            min-width: 140px;
            background: white;
        }
        
        #heic-converter-app .format-option:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }
        
        #heic-converter-app .format-option.active {
            border-color: var(--primary);
            background: rgba(67, 97, 238, 0.05);
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }
        
        #heic-converter-app .format-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        #heic-converter-app .format-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        #heic-converter-app .format-desc {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        #heic-converter-app .result-container {
            display: none;
            text-align: center;
            margin-top: 30px;
            animation: heic-app-fadeIn 0.5s ease;
        }
        
        @keyframes heic-app-fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        #heic-converter-app .results-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
            border-radius: 12px;
            overflow: hidden;
        }
        #heic-converter-app .results-table th, #heic-converter-app .results-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--border);
            vertical-align: middle;
        }
        #heic-converter-app .results-table th {
            background-color: var(--light);
            font-weight: 600;
        }
        #heic-converter-app .results-table tr:last-child td {
            border-bottom: none;
        }
        #heic-converter-app .results-table td {
            color: var(--gray);
        }
        #heic-converter-app .results-table td:first-child {
            color: var(--dark);
            font-weight: 500;
            word-break: break-all;
        }
        #heic-converter-app .btn-download-small {
            padding: 5px 12px;
            font-size: 0.85rem;
            font-weight: 500;
            border-radius: 20px;
            background: var(--success);
            color: white;
            text-decoration: none;
            display: inline-block;
        }

        #heic-converter-app .loader {
            display: none;
            text-align: center;
            margin: 30px 0;
        }
        
        /* Style for the new loader text */
        #heic-converter-app #loaderText {
            font-size: 1.6rem; /* Larger text */
            font-weight: 600;
            color: var(--primary);
            position: relative;
        }

        /* Add blinking dots using a pseudo-element */
        #heic-converter-app #loaderText::after {
            content: '.';
            animation: heic-app-dots 1.4s infinite;
            position: absolute;
            margin-left: 2px;
        }
        
        /* Keyframe animation for the blinking dots */
        @keyframes heic-app-dots {
            0%, 20% {
                content: '.';
            }
            40% {
                content: '..';
            }
            60% {
                content: '...';
            }
            80%, 100% {
                content: '...';
            }
        }
                        
        #heic-converter-app .status {
            margin-top: 20px;
            padding: 15px;
            border-radius: 8px;
            display: none;
            animation: heic-app-fadeIn 0.3s ease;
        }
        
        #heic-converter-app .status.error {
            background: #ffebee;
            color: #c62828;
            border: 1px solid #ffcdd2;
            display: block;
        }
        
        #heic-converter-app .status.success {
            background: #e8f5e9;
            color: #2e7d32;
            border: 1px solid #c8e6c9;
            display: block;
        }
        
        #heic-converter-app footer {
            text-align: center;
            padding: 20px;
            color: var(--gray);
            font-size: 0.9rem;
            border-top: 1px solid var(--border);
            background: var(--light);
        }
        
        #heic-converter-app .file-list-container {
            margin-top: 20px;
            max-height: 150px;
            overflow-y: auto;
            background: var(--light);
            padding: 10px;
            border-radius: 8px;
            text-align: left;
        }

        #heic-converter-app .file-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px;
            font-size: 0.9rem;
        }
        
        #heic-converter-app .action-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        @media (max-width: 768px) {
            #heic-converter-app h1 {
                font-size: 2rem;
            }
            #heic-converter-app .action-buttons {
                flex-direction: column;
                align-items: center;
            }
            #heic-converter-app .btn {
                width: 100%;
                max-width: 300px;
            }
            #heic-converter-app .results-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
        }