.chatbot-container {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px 10px 0 0;
    background: #fff;
    display: none;
    flex-direction: column;
}

.chatbot-header {
    background: #007BFF;
    color: #fff;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-body {
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.chatbot-messages {
    display: flex;
    flex-direction: column;
}

.bot-message, .user-message {
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
}

.bot-message {
    background: #f1f1f1;
    align-self: flex-start;
}

.user-message {
    background: #007BFF;
    color: #fff;
    align-self: flex-end;
}

.chatbot-input {
    display: flex;
    border-top: 1px solid #ccc;
}

.chatbot-input input {
    flex: 1;
    border: none;
    padding: 10px;
    border-radius: 0 0 0 10px;
}

.chatbot-input button {
    border: none;
    background: #007BFF;
    color: #fff;
    padding: 10px;
    border-radius: 0 0 10px 0;
}

.chatbot-toggle {
    position: fixed;
    bottom: 0;
    right: 20px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
