
        /* WP chatbot Admin Page Styling */
        .wp-chatbot-wrap {
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            font-family: Arial, sans-serif;
        }

        .wp-chatbot-title {
            font-size: 2.5em;
            color: #0073aa;
            margin-bottom: 20px;
        }

        .wp-chatbot-welcome {
            font-size: 1.2em;
            color: #444;
            margin-bottom: 30px;
            animation: fadeIn 1s ease-in-out;
        }

        .wp-chatbot-heading {
            font-size: 1.8em;
            color: #23282d;
            margin-bottom: 15px;
        }

        .wp-chatbot-steps {
            margin-left: 20px;
            padding-left: 15px;
            list-style-type: disc;
            color: #444;
        }

        .wp-chatbot-docs {
            font-size: 1em;
            color: #555;
            margin-top: 20px;
        }

        .wp-chatbot-shortcode {
            font-size: 1.1em;
            margin-top: 10px;
            background-color: #ffffff;
            padding: 10px;
            border-left: 4px solid #0073aa;
            color: #444;
        }

        .wp-chatbot-highlight {
            background-color: yellow;
            font-weight: bold;
        }

        .wp-chatbot-social-icons {
            margin-top: 30px;
        }

        .wp-chatbot-social-icons .social-icon {
            margin-right: 10px;
            font-size: 1.5em;
            color: #0073aa;
            text-decoration: none;
        }

        .wp-chatbot-social-icons .social-icon:hover {
            color: #00a0d2;
            transition: color 0.3s ease;
        }

        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
  