.elementor-4858 .elementor-element.elementor-element-c5401ba{--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-4858:not(.elementor-motion-effects-element-type-background), body.elementor-page-4858 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #E9EFFA 0%, #E9EFFA 100%);}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-607703f *//* mobile friendly + buttons slightly smaller, no shadows */
        :root {
            --primary: #0066cc;
            --primary-light: #e6f2ff;
            --dark: #333;
            --light: #f8f9fa;
            --gray: #6c757d;
            --clear-gradient: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            margin: 0;
            padding: 0 10px;
            min-height: 100vh;
            padding-bottom: 20px;
        }
        .app-header {
            text-align: center;
            padding: 20px 0 15px;
        }
        .app-header h1 {
            color: var(--primary);
            margin-bottom: 6px;
            font-size: 2.2rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            line-height: 1.2;
        }
        .app-header p {
            color: #666;
            font-size: 1rem;
            margin: 0 auto;
            max-width: 600px;
            padding: 0 5px;
        }
        
        .input-area {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            padding: 20px;
            border: 1px solid #e0e0e0;
            margin-bottom: 20px;
        }
        
        /* BUTTONS: slightly smaller than previous "bit bigger" version, NO SHADOW */
        .btn-clear, .btn-convert, .btn-stop {
            padding: 10px 16px;        /* reduced from 14px 20px */
            font-size: 1.1rem;          /* reduced from 1.2rem */
            width: 140px;                /* reduced from 160px */
            border-radius: 40px;         
            transition: all 0.2s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;                    
            font-weight: 600;             
            color: white !important;
            box-shadow: none;             /* SHADOWS REMOVED */
            letter-spacing: 0.2px;
        }
        
        .btn-clear {
            background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
        }
        
        .btn-convert {
            background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
        }
        
        .btn-stop {
            background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        }
        
        /* active/tap feedback - keep but without shadow */
        .btn-clear:active, .btn-convert:active, .btn-stop:active {
            transform: scale(0.97);
            opacity: 0.9;
        }
        
        .form-control, .form-select {
            border-radius: 12px;
            border: 1.5px solid #d1d1d1;
            font-size: 1rem;
            padding: 12px 16px;
            height: auto;
            line-height: 1.4;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
        }
        
        /* Enhanced dropdown styles */
        .voice-dropdown-container .form-select {
            padding: 12px 16px;
            width: 100%;
            max-width: none;
            background-size: 16px 12px;
        }
        
        /* Voice controls */
        .voice-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-bottom: 15px;
        }
        
        .voice-control-group {
            flex: 1 1 100%;
            min-width: 200px;
        }
        
        @media (min-width: 500px) {
            .voice-control-group {
                flex: 1 1 calc(50% - 18px);
            }
        }
        @media (min-width: 700px) {
            .voice-control-group {
                flex: 1 1 calc(33.333% - 18px);
            }
        }
        
        .voice-control-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #444;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }
        
        .voice-slider {
            width: 100%;
            height: 10px;
            -webkit-appearance: none;
            background: #e0e0e0;
            border-radius: 10px;
            outline: none;
        }
        
        .voice-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 26px;
            height: 26px;
            background: var(--primary);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,102,204,0.4);
            border: 2px solid white;
        }
        
        .voice-slider::-moz-range-thumb {
            width: 26px;
            height: 26px;
            background: var(--primary);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,102,204,0.4);
            border: 2px solid white;
        }
        
        .voice-value {
            text-align: center;
            font-weight: 700;
            color: var(--primary);
            margin-top: 8px;
            font-size: 1.1rem;
            background: var(--primary-light);
            display: inline-block;
            padding: 4px 16px;
            border-radius: 40px;
            min-width: 60px;
        }
        
        /* Text area styling */
        .text-input-area {
            width: 100%;
            min-height: 180px;
            padding: 18px;
            border-radius: 16px;
            border: 1.5px solid #d1d1d1;
            font-size: 1.05rem;
            resize: vertical;
            margin-bottom: 20px;
            color: #000000;
            background: #fefefe;
        }
        
        .text-input-area:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
            color: #000000;
        }
        
        /* Button container - adjusted for current button size */
        .button-container {
            display: flex;
            justify-content: center;
            gap: 14px;                
            margin-bottom: 25px;       
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
        }
        
        @media (min-width: 480px) {    
            .button-container {
                flex-direction: row;
                gap: 16px;
            }
        }
        
        /* Voice dropdown containers spacing */
        .voice-dropdown-container {
            margin-bottom: 22px;
        }
        
        .voice-dropdown-container label {
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
            color: #444;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }
        
        /* Highlight dropdowns for visibility */
        .voice-dropdown-container .form-select {
            border-width: 2px;
            background-color: #fff;
            font-size: 1rem;
        }
        
        /* Better touch for selects on iOS */
        select.form-select {
            -webkit-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1.2rem;
        }
        
        /* adjust header icon size */
        .app-header h1 i {
            font-size: 2rem;
            vertical-align: middle;
            margin-right: 5px;
        }
        
        /* Extra small devices - buttons not too large, no shadow */
        @media (max-width: 480px) {
            .btn-clear, .btn-convert, .btn-stop {
                width: 100%;
                max-width: 260px;      
                padding: 12px 16px;     
                font-size: 1.1rem;
                box-shadow: none;
            }
            .app-header h1 {
                font-size: 1.8rem;
            }
            .app-header p {
                font-size: 0.95rem;
            }
            .input-area {
                padding: 15px;
            }
        }
        
        /* fix for landscape orientation */
        @media (max-height: 500px) and (orientation: landscape) {
            .text-input-area {
                min-height: 120px;
            }
            .app-header {
                padding: 8px 0;
            }
            .app-header h1 {
                font-size: 1.8rem;
            }
            .voice-controls {
                gap: 12px;
            }
            .btn-clear, .btn-convert, .btn-stop {
                padding: 8px 14px;
                font-size: 1rem;
                width: 130px;
                box-shadow: none;
            }
        }
        
        /* improve spacing for larger phones */
        @media (min-width: 600px) {
            .input-area {
                padding: 28px;
            }
            .text-input-area {
                min-height: 200px;
            }
        }/* End custom CSS */