       .floating-button {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%) rotate(-1deg);
            background-color: #ff69b4;
            color: white;
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            animation: none;
            transition: all 0.3s ease;
            text-decoration: none;
        }


        @keyframes shake {
            0% { transform: translateY(-50%) rotate(0deg); }
            25% { transform: translateY(-50%) rotate(5deg); }
            50% { transform: translateY(-50%) rotate(-5deg); }
            75% { transform: translateY(-50%) rotate(5deg); }
            100% { transform: translateY(-50%) rotate(0deg); }
        }


       .floating-button:hover {
            background-color: #ff1493;
            color: white;
            font-weight: bold;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
            text-decoration: none; 
        }