.elementor-8464 .elementor-element.elementor-element-4e6392e{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:20px;--padding-left:0px;--padding-right:0px;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-61add44 */.zoom-container {
            zoom: 120%;
            -moz-transform: scale(0.7);
            -moz-transform-origin: 0 0;
            -o-transform: scale(0.7);
            -o-transform-origin: 0 0;
            -webkit-transform: scale(0.7);
            -webkit-transform-origin: 0 0;
            transform: scale(0.7);
            transform-origin: 0 0;
            width: 142.857%;
            height: 142.857%;
        }
        
        :root {
            --primary: #0066cc;
            --primary-light: #e6f2ff;
            --dark: #333;
            --light: #f8f9fa;
            --gray: #6c757d;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            margin: 0;
            min-height: 100vh;
       
            background: white;
            overflow-x: hidden;
        }
        
        /* Zoom-in animation */
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .app-header {
            text-align: center;
            padding: 30px 0 20px;
            animation: zoomIn 0.5s ease-out;
        }
        .app-header h1 {
            color: #0066cc;
            margin-bottom: 16px;
            font-size: 2.5rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,102,204,0.1);
        }
        .app-header .description {
            color: #4a5568;
            font-size: 1.2rem;
            margin: 0 auto;
            max-width: 700px;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .conversion-form {
            max-width: 1000px;
            margin: 0 auto;
            background: #e3f2fd;
            border-radius: 12px;
            padding: 25px;
            border: 2px solid #90caf9;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            animation: zoomIn 0.5s ease-out 0.1s backwards;
        }
        
        .conversion-form:hover {
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(0,102,204,0.15);
        }
        
        /* Dropdown container matching value box layout */
        .dropdown-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
        }
        
        .dropdown-item {
            flex: 1;
            margin: 0;
        }
        
        .dropdown-item .form-select {
            width: 100%;
            height: 58px;
        }
        
        .swap-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
        }
        
        .swap-btn {
            border-radius: 50%;
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 2px solid #0d47a1;
            color: #0d47a1;
            transition: all 0.3s;
            font-size: 1.4rem;
        }
        
        .swap-btn:hover {
            background: #0d47a1;
            color: white;
            transform: rotate(180deg);
            cursor: pointer;
        }
        
        .form-control, .form-select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #90caf9;
            font-size: 0.9rem;  /* Smaller font for selects */
            height: 58px;
            background-color: white;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
            outline: none;
        }
        
        .value-box-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 25px 0;
        }
        
        .value-box {
            flex: 1;
            background: white;
            border-radius: 10px;
            padding: 15px;
            border: 1px solid #90caf9;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            text-align: center;
            min-height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .value-box .form-control {
            height: 60px;
            font-size: 1.3rem;
            font-weight: 700;
            text-align: center;
            background: #f8f9fa;
            border: 1px solid #90caf9;
            width: 100%;
        }
        
        .value-box .form-control:focus {
            background: white;
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
        }
        
        .value-box.to .form-control {
            background: #e8f0fe;
        }
        
        .equal-sign {
            font-size: 2.8rem;
            font-weight: bold;
            color: #0d47a1;
            padding: 0 25px;
            margin: 0 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .storage-box { border-top: 5px solid #0d47a1; }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .conversion-form {
                padding: 1.5rem;
                margin: 15px;
            }
            .app-header h1 {
                font-size: 2rem;
            }
            .app-header .description {
                font-size: 1rem;
                padding: 0 15px;
            }
            .dropdown-container {
                flex-direction: column;
            }
            .swap-container {
                margin: 15px 0;
                padding: 0;
            }
            .value-box-container {
                flex-direction: column;
            }
            .equal-sign {
                transform: rotate(90deg);
                padding: 15px 0;
                margin: 10px 0;
            }
            .value-box {
                width: 100%;
                margin-bottom: 15px;
            }
            .swap-btn {
                margin: 0 auto;
            }
            /* Further reduce font for selects on smaller screens */
            .form-select {
                font-size: 0.85rem;
                padding: 8px 12px;
            }
        }

        /* Extra small devices (phones, 576px and down) */
        @media (max-width: 576px) {
            .app-header {
                padding: 20px 0 15px;
            }
            .app-header h1 {
                font-size: 1.8rem;
                margin-bottom: 12px;
            }
            .app-header .description {
                font-size: 0.95rem;
                padding: 0 10px;
            }
            .conversion-form {
                padding: 1rem;
                margin: 10px;
            }
            .dropdown-item .form-select,
            .value-box .form-control {
                height: 50px;
            }
            .form-select {
                font-size: 0.8rem;
            }
            .swap-btn {
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }
            .equal-sign {
                font-size: 2rem;
            }
        }
    </style>/* End custom CSS */