		
        .instructions {
            background-color: #e0ffe0; /* Lighter green */
            border-left: 5px solid #28a745; /* Darker green border */
            padding: 15px;
            margin-top: 20px;
            border-radius: 8px;
            text-align: left;
            font-size: 0.9em;
            color: #2d3748;
        }

        /* Custom Chat Widget Styles */
        #chat-widget-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #28a745; /* Green */
            color: #ffffff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s ease-in-out;
            z-index: 1000;
        }
        #chat-widget-button:hover {
            transform: scale(1.05);
        }
        #chat-widget-button img {
            width: 60px; /* customIconSize */
            height: 60px; /* customIconSize */
            border-radius: 15px; /* customIconBorderRadius */
        }

        #chat-widget-container {
            display: none; /* Hidden by default */
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 400px; /* chatWindow.width */
            height: 600px; /* chatWindow.height */
            background-color: #ffffff; /* chatWindow.backgroundColor */
            border-radius: 10px; /* Border radius for the whole window */
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            flex-direction: column;
            overflow: hidden;
            z-index: 1000;
            transition: all 0.3s ease-in-out;
        }

        #chat-widget-container.zoomed {
            width: 90vw;
            height: 90vh;
            top: 5vh;
            left: 5vw;
            bottom: auto;
            right: auto;
        }

        .chat-header {
            display: flex;
            align-items: center;
            padding: 15px;
            background-color: #28a745; /* Darker Green for header */
            color: #ffffff; /* White text */
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            font-weight: 600;
            font-size: 18px;
            justify-content: space-between;
        }
        .chat-header img {
            width: 40px;
            height: 40px;
            border-radius: 50%; /* chatWindow.avatarBorderRadius */
            margin-right: 10px;
        }
        .chat-header .title-text {
            flex-grow: 1;
        }
        .chat-header-actions button {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 20px;
            cursor: pointer;
            margin-left: 10px;
            padding: 5px;
            border-radius: 5px;
            transition: background-color 0.2s;
        }
        .chat-header-actions button:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        #chat-widget-body {
            flex-grow: 1;
            padding: 15px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background-color: #ffffff; /* chatWindow.backgroundColor */
        }
        .chat-message-container {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .chat-message-container img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            align-self: flex-end;
            flex-shrink: 0;
        }

        .chat-message-bubble {
            padding: 10px 15px;
            border-radius: 6px; /* messageBorderRadius */
            max-width: 75%;
            word-wrap: break-word;
            font-size: 16px; /* chatWindow.fontSize */
        }

        .user-message {
            align-self: flex-end;
            flex-direction: row-reverse; /* Puts avatar on the right */
        }
        .user-message .chat-message-bubble {
            background-color: #e0ffe0; /* Light green for user message */
            color: #050505; /* userMessage.textColor */
        }

        .bot-message {
            align-self: flex-start;
            flex-direction: row; /* Puts avatar on the left */
        }
        .bot-message .chat-message-bubble {
            background-color: #28a745; /* Green for bot message */
            color: #ffffff; /* White text */
        }

        .chat-input-area {
            display: flex;
            padding: 15px;
            border-top: 1px solid #c8e6c9; /* Lighter green border */
            background-color: #f0f8f0; /* Very light green background */
        }
        #chat-widget-input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 1px solid #a2d2a4; /* Medium green border */
            border-radius: 6px; /* textInput.borderRadius */
            margin-right: 10px;
            font-size: 16px;
            background-color: #ffffff; /* textInput.backgroundColor */
            color: #1e1e1f; /* textInput.textColor */
        }
        #chat-widget-input:focus {
            outline: none;
            border-color: #28a745; /* Green */
            box-shadow: 0 0 0 1px #28a745; /* Green */
        }
        #chat-widget-send {
            background-color: #28a745; /* Green */
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 50px; /* textInput.sendButtonBorderRadius */
            cursor: pointer;
            transition: background-color 0.2s ease-in-out;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        #chat-widget-send:hover {
            background-color: #218838; /* Slightly darker green on hover */
        }

        /* Starter prompts styling */
        .starter-prompts-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 10px 0;
            justify-content: center;
        }
        .starter-prompt-button {
            background-color: #c8e6c9; /* Light green */
            color: #4a5568;
            padding: 8px 12px;
            border-radius: 20px;
            border: none;
            cursor: pointer;
            font-size: 15px; /* starterPromptFontSize */
            transition: background-color 0.2s ease-in-out;
        }
        .starter-prompt-button:hover {
            background-color: #a2d2a4; /* Medium green on hover */
        }