.ts-whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .ts-whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #128C7E;
            box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
        }

        .ts-whatsapp-icon {
            width: 35px;
            height: 35px;
            fill: #fff;
        }

        @media (max-width: 768px) {
            .ts-whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            .ts-whatsapp-icon {
                width: 28px;
                height: 28px;
            }
        }
