#repair-chatbot {
    width: 300px;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9f9;
}

#chatbot-messages {
    height: 400px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.chatbot-message {
    margin-bottom: 10px;
}

.chatbot-question {
    font-weight: bold;
    color: #0073aa;
}

.chatbot-answer {
    color: #555;
}

.chatbot-error {
    color: red;
}

#chatbot-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
}

#chatbot-send {
    width: 100%;
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px;
}
