        /* Chatbot Trigger Button */
        .chatbot-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            background-color: #007bff;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
        }

            .chatbot-button i {
                font-size: 24px;
            }

        /* Chatbot Modal */
        .chatbot-modal {
            position: fixed;
            bottom: 30px;
            right: 20px;
            width: 300px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            background-color: white;
            display: none;
            z-index: 999;
        }

            .chatbot-modal .modal-header {
                background-color: #007bff;
                color: white;
                border-top-left-radius: 10px;
                border-top-right-radius: 10px;
                padding: 10px;
            }

            .chatbot-modal .modal-content {
                border-radius: 10px;
            }
            .chatbot-modal .modal-body {
                padding: 10px;
                height: 400px;
                overflow-y: auto;
                border: 1px solid #ccc;
            }

            .chatbot-modal .input-group {
                margin-top: 10px;
            }

            .chatbot-modal .user-message {
                background-color: #f1f1f1;
                padding: 5px 10px;
                border-radius: 10px;
                margin-bottom: 5px;
                text-align: right;
            }

            .chatbot-modal .bot-message {
                background-color: #007bff;
                color: white;
                padding: 5px 10px;
                border-radius: 10px;
                margin-bottom: 5px;
                text-align: left;
            }

        #chatbot {
            max-height: 300px; /* Adjust height as needed */
            overflow-y: auto;
            scroll-behavior: smooth; /* Optional: Smooth scrolling */
        }
