        #keypad {
            width: 280px;
            height: 250px;
            /* position: absolute; */
            border-collapse: separate;
            border-spacing: 15px;
            top: -8px;
            left: 37px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .18);
        }
        
        .key:hover {
            background-color: #05a8dfb3;
            color: #fff;
        }
        
        .keyamount {
            background-color: #05a8dfb3;
            color: #fff;
        }
        
        .key {
            text-align: center;
            font-weight: bold;
            border: 1px solid #05a8dfb3;
            color: #2d2121;
            cursor: pointer;
            width: 32px;
            height: 46px;
            border-radius: 50%;
        }
        
        .paymenttype {
            background: #28D094;
            -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.15), 0px 4px 5px 0px rgba(0, 0, 0, 0.1), 0px 1px 10px 0px rgba(0, 0, 0, 0.06);
            box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.15), 0px 4px 5px 0px rgba(0, 0, 0, 0.1), 0px 1px 10px 0px rgba(0, 0, 0, 0.06);
            color: #fff;
        }
        
        .selectcat {
            background: #95e880;
        }
        
        .content {
            text-align: left;
            color: #428bca;
        }
        
        .data tbody tr td {
            padding: 0rem;
            padding-right: 0rem;
            padding-left: 0rem;
        }

        /* Hide Google Translate top banner */
        .goog-te-banner-frame.skiptranslate, .goog-te-banner-frame {
            display: none !important;
        }

        body {
            top: 0px !important;
            position: relative !important;
        }

        /* Modern Keyframe Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulseGlow {
            0% { transform: scale(1); box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4); }
            50% { transform: scale(1.04); box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6); }
            100% { transform: scale(1); box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4); }
        }

        @keyframes floatBounce {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }

        .animate-fade-in {
            animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .pulse-button {
            animation: pulseGlow 3s infinite ease-in-out;
        }

        .whatsapp-float {
            animation: floatBounce 4s infinite ease-in-out;
        }

        .hover-card {
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hover-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
        }