        :root {
            --primary: #8b5cf6;
            --primary-light: #a78bfa;
            --primary-dark: #7c3aed;
            --black: #000;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        
        .container {
            padding: 40px 30px;
        }


         #mobilePopup {
             width: 500px;
             margin: auto;
         }


        .blaz-image-converter-file-size {
            margin-top: 20px;
        }

        .blaz-image-converter-file-size span {
            background: #f7f8f9;
            padding: 3px 8px;
            border-radius: 5px;
            border: 1px solid #e0e3e7;
            font-size: 14px;
            font-weight: 500;
            color: #212425;
        }


        .blaz-image-converter-widget {
            width: 100%;
            transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin:auto;
        }

        /* Loading spinner styles */
        .blaz-image-converter-loading-spinner {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
        }

        .blaz-image-converter-loading-spinner svg {
            animation: spin 1s linear infinite;
            color: var(--primary);
        }


.blaz-image-converter-file-actions-content {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* File actions layout */
        .blaz-image-converter-file-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

         .info-and-title {
             width: 100%;
         }


        /* Smooth removal animation for file items */
        .blaz-image-converter-file-item {
            transition: all 0.3s ease;
            transform: translateX(0);
            opacity: 1;
        }

        .blaz-image-converter-file-item.removing {
            opacity: 0;
            transform: translateX(-100%);
            pointer-events: none;
        }

        /* Format selector smooth transitions */
        .blaz-image-converter-format-selector {
            transition: all 0.3s ease;
            opacity: 1;
        }

        .blaz-image-converter-format-selector[style*="display: none"] {
            opacity: 0;
            transform: translateY(-10px);
        }

        .blaz-image-converter-container {
            padding: 0px;
            background: white;
            transition: all 0.4s 
        cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .blaz-image-converter-header {
            text-align: center;
        }

        .blaz-image-converter-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--black);
        }


        .convert-p {
            display: block;
            width: fit-content;
            white-space: nowrap !important;
        } 
        
        .download-actions {
            display: flex;
            gap: 15px;
        }     
        
        .blaz-image-converter-header p {
            font-size: 17px;
            color: var(--gray-600);
            max-width: 495px;
            margin: 0 auto;
        }

       .blaz-image-converter-format-selector {
           display: flex;
           align-items: center;
           justify-content: center;
           gap: 20px;
           margin-top: 20px;
       }

        .blaz-image-converter-dropdown {
            position: relative;
            min-width: 120px;
        }

        .blaz-image-converter-dropdown-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 10px 15px;
            background: white;
            border: 1px solid var(--gray-300);
            border-radius: var(--radius);
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .blaz-image-converter-dropdown-btn:hover {
            border-color: var(--primary);
        }

        .blaz-image-converter-dropdown-btn svg {
            width: 16px;
            height: 16px;
            transition: var(--transition);
        }

        .blaz-image-converter-dropdown-btn.active svg {
            transform: rotate(180deg);
        }


        .blaz-image-converter-file-types {
            gap: 6px;
            display: flex;
            justify-content: center;
        }

        .blaz-image-converter-dropdown-content {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            width: 100%;
            background: white;
            border-radius: var(--radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 999999;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .blaz-image-converter-dropdown-content.show {
            max-height: 225px;
            overflow-y: auto;
        }

        .blaz-image-converter-dropdown-item {
            padding: 10px 15px;
            cursor: pointer;
            transition: var(--transition);
        }

        .blaz-image-converter-dropdown-item:hover {
            background: var(--gray-100);
            color: var(--primary);
        }

        .blaz-image-converter-arrow {
            display: flex;
            align-items: center;
            color: var(--gray-400);
        }

        #blazImageConverter {
            margin-top: 15px;
        }
        
       .blaz-image-converter-badge i {
    color: var(--success);
} 
        

        .blaz-image-converter-upload-area {
            border: 2px dashed var(--black);
            border-radius: var(--radius);
            padding: 40px 20px;
            text-align: center;
            display: flex;
            height: 296px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
            margin-top: 0px;
            background: linear-gradient(to bottom, #ffffff, #f9fafb);
            position: relative;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
        }

        .blaz-image-converter-upload-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.05), transparent);
            transform: translateX(-100%);
            transition: transform 2s ease-in-out;
        }

        .blaz-image-converter-upload-area:hover::before {
            transform: translateX(100%);
        }

        .blaz-image-converter-upload-area:hover, 
        .blaz-image-converter-upload-area.drag-over {
            border-color: var(--primary);
            background: rgba(139, 92, 246, 0.05);
            transform: scale(1);
        }

        .blaz-image-converter-upload-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            border-radius: 50%;
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        
        .blaz-image-converter-upload-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(rgba(255, 255, 255, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        
    .blaz-image-converter-file-info {
    width: 100%;
}    

        
        .blaz-image-converter-upload-area:hover .blaz-image-converter-upload-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .blaz-image-converter-upload-area:hover .blaz-image-converter-upload-icon::after {
            opacity: 1;
        }

        .blaz-image-converter-upload-icon svg {
            width: 30px;
            height: 30px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .blaz-image-converter-upload-text h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--black);
        }


        .blaz-image-converter-upload-text p {
            font-size: 17px;
            color: var(--gray-900);
            margin-bottom: 15px;
            margin-top: 25px !important;
            font-weight: 500;
        }

        .blaz-image-converter-file-types {
            margin-bottom: 10px;
            color: var(--gray-600);
            font-size: 16px;
        }

        .blaz-image-converter-file-size {
            color: var(--gray-600);
            font-size: 16px;
        }

        .blaz-image-converter-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border: none;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
            position: relative;
            overflow: hidden;
        }

        .blaz-image-converter-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        
        .blaz-image-converter-btn:hover::after {
            opacity: 1;
        }
        
        .blaz-image-converter-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
        }

        .blaz-image-converter-btn-outline {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .blaz-image-converter-btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .blaz-image-converter-btn svg {
            width: 18px;
            height: 18px;
            margin-right: 8px;
        }

        .blaz-image-converter-file-list {
            margin-top: 20px;
        }

.info-and-title {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.blaz-image-converter-file-item {
    display: flex;
    align-items: center;
    padding: 20px 16px;
    border-radius: var(--radius);
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--gray-200);
    justify-content: space-between;
}

        .blaz-image-converter-file-item:hover {
            border-color: var(--gray-300);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
        }

        .blaz-image-converter-file-error {
            border-color: var(--error) !important;
            background: rgba(239, 68, 68, 0.05) !important;
        }

        .blaz-image-converter-file-error:hover {
            border-color: var(--error) !important;
            box-shadow: 0 8px 16px rgba(239, 68, 68, 0.15) !important;
        }

        .blaz-image-converter-file-icon-error {
            background: rgba(239, 68, 68, 0.1) !important;
            color: var(--error) !important;
        }

        .blaz-image-converter-error-message {
            color: var(--error);
            font-weight: 500;
            font-size: 0.9rem;
        }
        

        
        .blaz-image-converter-file-item:hover::before {
            opacity: 1;
        }

        .blaz-image-converter-file-icon {
            width: 40px;
            height: 40px;
            background: var(--gray-100);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--gray-600);
        }
        
        .blaz-image-converter-file-icon svg {
            height: 24px;
        }       


        .blaz-image-converter-file-name {
            font-weight: 500;
            margin-bottom: 2px;
            color: var(--gray-800);
            font-size: 16px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .blaz-image-converter-file-size-info {
            color: var(--gray-500);
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.blaz-image-converter-file-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.blaz-image-converter-file-actions {
    width: 25%;
}

        .blaz-image-converter-file-select {
            min-width: 120px;
        }

        .blaz-image-converter-remove-btn {
            color: var(--error);
            background: rgba(239, 68, 68, 0.1);
            border: none;
            cursor: pointer !important;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            padding: 10px;
            border-radius: 50%;
        }
        
        span.blaz-image-converter-ext {
            background: #f7f8f9;
            padding: 3px 8px;
            border-radius: 5px;
            border: 1px solid #e0e3e7;
            font-size: 14px;
            font-weight: 500;
            color: #212425;
        }

        .blaz-image-converter-remove-btn:hover {
            color: var(--error);
            background: rgba(239, 68, 68, 0.25);
        }

        .blaz-image-converter-progress {
            height: 4px;
            width: 100%;
            background: var(--gray-200);
            border-radius: 10px;
            overflow: hidden;
            margin-top: 5px;
        }

        .blaz-image-converter-progress-bar {
            height: 100%;
            background: var(--primary);
            width: 0;
            transition: width 0.3s ease;
        }

        .blaz-image-converter-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .blaz-image-converter-converted-item {
            display: flex;
            align-items: center;
            padding: 16px;
            border-radius: var(--radius);
            margin-bottom: 15px;
            transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            border: 1px solid var(--gray-200);
            position: relative;
            overflow: hidden;
        }

        .blaz-image-converter-converted-item:hover {
            transform: translateY(-3px);
            border-color: var(--gray);
            box-shadow: 0 8px 16px rgba(16, 185, 129, 0.1);
        }
        
        .blaz-image-converter-converted-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--success);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .blaz-image-converter-converted-item:hover::before {
            opacity: 1;
        }

        .blaz-image-converter-success-icon {
            color: var(--success);
            margin-right: 5px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .blaz-image-converter-download-btn {
            background: var(--primary);
            border: none;
            color: white;
            cursor: pointer;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            border-radius: var(--radius);
            font-size: 0.9rem;
            font-weight: 500;
            gap: 6px;
            box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
        }

.blaz-image-converter-download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(55 55 55 / 35%);
}

.blaz-image-converter-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(55 55 55 / 20%);
    border-color: var(--black);
}


        .blaz-image-converter-time {
            margin-left: 10px;
            color: var(--gray-500);
            font-size: 0.8rem;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .blaz-image-converter-conversion-time {
            color: var(--primary);
            font-size: 0.8rem;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 6px;
            margin-top: 5px;
            font-weight: 500;
        }

        .blaz-image-converter-conversion-time svg {
            animation: rotate 2s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .blaz-image-converter-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 16px 20px;
            border-radius: var(--radius);
            background: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            max-width: 350px;
            transform: translateX(calc(100% + 20px));
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1000;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .blaz-image-converter-notification.show {
            transform: translateX(0);
        }

        .blaz-image-converter-notification-icon {
            margin-right: 12px;
        }

        .blaz-image-converter-notification-content {
            flex: 1;
        }

        .blaz-image-converter-notification-title {
            font-weight: 600;
            margin-bottom: 2px;
            font-size: 0.95rem;
        }

        .blaz-image-converter-notification-message {
            color: var(--gray-600);
            font-size: 0.85rem;
        }

        .blaz-image-converter-notification-success {
            border-left: 4px solid var(--success);
        }

        .blaz-image-converter-notification-success .blaz-image-converter-notification-icon {
            color: var(--success);
        }

        .blaz-image-converter-notification-error {
            border-left: 4px solid var(--error);
        }

        .blaz-image-converter-notification-error .blaz-image-converter-notification-icon {
            color: var(--error);
        }

        .blaz-image-converter-notification-warning {
            border-left: 4px solid var(--warning);
        }

        .blaz-image-converter-notification-warning .blaz-image-converter-notification-icon {
            color: var(--warning);
        }

        .blaz-image-converter-notification-close {
            background: transparent;
            border: none;
            color: var(--gray-400);
            cursor: pointer;
            padding: 5px;
            margin-left: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .blaz-image-converter-notification-close:hover {
            color: var(--gray-600);
        }

        .blaz-image-converter-hidden {
            display: none;
        }

        .blaz-image-converter-footer {
            margin-top: 40px;
            padding: 30px;
            background: linear-gradient(to right, #f9fafb, #f3f4f6);
            border-top: 1px solid var(--gray-200);
            border-radius: 0 0 20px 20px;
        }
        
        .blaz-image-converter-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .blaz-image-converter-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        
        .blaz-image-converter-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12);
        }
        
        .blaz-image-converter-feature-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 24px;
            color: white;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(139, 92, 246, 0.25);
        }
        
        .blaz-image-converter-feature-content h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--gray-800);
        }
        
        .blaz-image-converter-feature-content p {
            font-size: 0.9rem;
            color: var(--gray-600);
            line-height: 1.4;
        }
        
        .blaz-image-converter-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .blaz-image-converter-link {
            color: var(--gray-700);
            text-decoration: none;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 30px;
            background: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        
        .blaz-image-converter-link:hover {
            color: var(--primary);
            box-shadow: 0 4px 10px rgba(139, 92, 246, 0.15);
            transform: translateY(-2px);
        }
        
        .blaz-image-converter-link i {
            font-size: 14px;
            color: var(--primary);
        }
        
        .blaz-image-converter-footer-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-direction: row;
            flex-wrap: wrap;
        }
                
        .blaz-image-converter-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 30px;
            border: 1px solid var(--gray-100);
            background: #f7f8f9;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-900);
        }

        /* Mobile Popup Overlay */
        .blaz-image-converter-mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(2px);
        }

        .blaz-image-converter-mobile-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .blaz-image-converter-mobile-popup {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-radius: 20px 20px 0 0;
            max-height: 70vh;
            z-index: 999999;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.15);
        }

        .blaz-image-converter-mobile-popup.show {
            transform: translateY(0);
        }

        .blaz-image-converter-mobile-popup-header {
            padding: 20px 20px 10px;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .blaz-image-converter-mobile-popup-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gray-800);
        }

        .blaz-image-converter-mobile-popup-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-400);
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .blaz-image-converter-mobile-popup-close:hover {
            background: var(--gray-100);
            color: var(--gray-600);
        }

        .blaz-image-converter-mobile-popup-content {
            padding: 20px;
            max-height: calc(70vh - 80px);
            overflow-y: auto;
        }

        .blaz-image-converter-mobile-popup-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        @media (max-width: 480px) {
            .blaz-image-converter-mobile-popup-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (orientation: landscape) and (max-height: 500px) {
            .blaz-image-converter-mobile-popup {
                max-height: 85vh;
            }

            .blaz-image-converter-mobile-popup-content {
                max-height: calc(85vh - 80px);
            }
        }

        .blaz-image-converter-mobile-popup-item {
            padding: 15px;
            background: var(--gray-50);
            border-radius: var(--radius);
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid var(--gray-200);
            font-weight: 500;
            color: var(--gray-700);
        }

        .blaz-image-converter-mobile-popup-item:hover,
        .blaz-image-converter-mobile-popup-item:active {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
        }

        .blaz-image-converter-mobile-popup-item:active {
            transform: scale(0.95);
        }

        .blaz-image-converter-mobile-popup-item.selected {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary-dark);
            border: 0px;
        }

        @media (max-width: 768px) {
            .blaz-image-converter-header h1 {
                font-size: 2rem;
            }
            
.convert-p {
    display: block;
    width: fit-content;
    white-space: nowrap !important;
    margin-right: 10px;
}         
            
            
       #mobilePopup {
          width:100%;   
        }
       
    .blaz-image-converter-file-info {
        margin-bottom: 10px;
        width: 50%;
    }
    
    
.download-actions {
    margin-top: 12px;
}    
    
.blaz-image-converter-file-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}    
    
.blaz-image-converter-file-size-info {
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

.blaz-image-converter-time {
   margin-left:0px;
}


    .info-and-title {
        display: flex;
        align-items: flex-start;
        width: 100%;
        flex-direction: row;
        overflow: hidden;
    }

.blaz-image-converter-file-name {
        max-width: 100%;
        white-space: normal;
    }

            #blazImageConverter {
                width: 95%;
            }

            /* Hide regular dropdowns on mobile */
            .blaz-image-converter-dropdown-content {
                display: none !important;
            }

             @media (max-width: 1219px) and (min-width: 1130px) {
                #blazImageConverter {
                    max-width: 90% !important;
                }
             }
            
            
           .blaz-image-converter-file-types {
                margin-bottom: 10px;
                color: var(--gray-600);
                font-size: 16px;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                overflow-x: scroll;
                gap: 6px
            } 

            .blaz-image-converter-file-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .blaz-image-converter-file-icon {
                margin-bottom: 10px;
            }

            .blaz-image-converter-file-actions {
                margin-top: 10px;
                width: 100%;
            }


           .blaz-image-converter-actions {
                   gap: 10px;
                   display: flex;
                   flex-direction: column-reverse;
                   width: 100%;
                   align-items: stretch;
               }
               
               .blaz-image-converter-btn {
                    width: 100%;

               }
               
.blaz-image-converter-footer-badges {
    margin-top: 25px;
} 
               

            .blaz-image-converter-converted-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .blaz-image-converter-file-info {
                margin-bottom: 10px;
                width: 100%;
            }
            
            .blaz-image-converter-features {
                grid-template-columns: 1fr;
            }
            
            .blaz-image-converter-links {
                flex-direction: column;
                align-items: center;
            }
            
        }

        @media (max-width: 500px) {
            .blaz-image-converter-format-selector {
                gap: 10px;
            }

            .blaz-image-converter-dropdown {
                width: 100%;
            }

        }

        /* Animation for upload */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .blaz-image-converter-file-item, 
        .blaz-image-converter-converted-item,
        .blaz-image-converter-feature {
            animation: fadeInUp 0.5s ease forwards;
        }
        
        
        /* Converted item styling */
        .blaz-image-converter-converted {
            border-color: var(--gray-200) !important;
            background: #fff !important;
        }
        
        /* Convert complete animation */
        @keyframes convertComplete {
            0% { transform: scale(1); }
            50% { transform: scale(1.03); background-color: rgba(16, 185, 129, 0.1); }
            100% { transform: scale(1); }
        }
        
        .blaz-image-converter-convert-complete-animation {
            animation: convertComplete 0.6s ease-out;
        }
        
        /* Animation for arrow */
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .blaz-image-converter-arrow-animation {
            position: absolute;
            top: -50px;
            right: 20px;
            animation: bounce 1.5s infinite;
            color: #ff6b00;
            width: 40px;
            height: 40px;
        }
