/* Chatbot Button */
        .chatbot_logo{
            max-width: 50px
        }
        #friendzsoft-chatbot-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary-color);
            color: white;
            padding: 10px 15px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
        }

        /* Chatbot Widget */
        #friendzsoft-chatbot-widget {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 300px;
            background: white;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
            display: none;
            overflow: hidden;
            border: 1px solid #ddd;
        }

        #friendzsoft-chatbot-header {
            background: var(--primary-color);
            color: white;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
        }

        #friendzsoft-chatbot-close {
            background: none;
            border: none;
            font-size: 20px;
            color: white;
            cursor: pointer;
        }

        #friendzsoft-chatbot-messages {
            height: 250px;
            overflow-y: auto;
            padding: 10px;
            font-size: 14px;
            border-bottom: 1px solid #ddd;
        }

        .friendzsoft-chatbot-message {
            padding: 8px;
            margin-bottom: 8px;
            border-radius: 6px;
            max-width: 80%;
        }

        .user-message {
            background: #0073aa;
            color: white;
            align-self: flex-end;
        }

        .bot-message {
            background: #f1f1f1;
            align-self: flex-start;
        }

        #friendzsoft-chatbot-input-area {
            display: flex;
            padding: 10px;
        }

        #friendzsoft-chatbot-input {
            flex: 1;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 5px;
            outline: none;
        }

        #friendzsoft-chatbot-send {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 5px;
            margin-left: 5px;
        }