.chatbot-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ff6b00;
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 26px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 9999;
        }

        .chatbot-container {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 370px;
            height: 480px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
            z-index: 9999;
        }

        .chatbot-header {
            background: #ff6b00;
            color: white;
            padding: 12px;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
        }

        .chatbot-messages {
            flex: 1;
            padding: 10px;
            overflow-y: auto;
            background: #fefefe;
            display: flex;
            flex-direction: column;
        }

        .message {
            margin-bottom: 10px;
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 20px;
            font-size: 14px;
            line-height: 1.4;
            word-wrap: break-word;
        }

        .with-margin-top {
            margin-top: 20px;
        }

        .bot-message {
            background: #e6e6e6;
            align-self: flex-start;
        }

        .user-message {
            background: #ff6b00;
            color: white;
            align-self: flex-end;
        }

        .chatbot-input {
            display: flex;
            padding: 10px;
            border-top: 1px solid #ddd;
            background: #fff;
        }

        .chatbot-input input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 20px;
            font-size: 14px;
            outline: none;
        }

        .chatbot-input button {
            margin-left: 10px;
            padding: 10px 16px;
            background-color: #ff6b00;
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
        }

        .bot-options {
            margin-top: 8px;
            display: flex;
            gap: 8px;
        }

        .bot-options button {
            background: transparent;
            border: 1px solid #ff6b00;
            color: #ff6b00;
            padding: 6px 12px;
            border-radius: 12px;
            cursor: pointer;
            font-size: 13px;
        }

        .bot-options button.clicked {
            background-color: #ff6b00;
            color: white;
        }

        .bot-options button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }