#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#chatbot-button {
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    height: 400px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

#chatbot-window .header {
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

#chatbot-window .messages {
    overflow-y: scroll;
}

.message {
    padding: 8px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    max-width: 70%;
    word-wrap: break-word;
}

.user-message {
    background-color: #ADD8E6; /* Light Blue */
    align-self: flex-start;
    text-align: left;
}

.llm-message {
    background-color: #D3D3D3; /* Light Gray */
    align-self: flex-end;
    text-align: left;
}

#chat-messages {
    display: flex;
    flex-direction: column;
    padding: 10px;
    height: 300px;
    overflow-y: scroll;
    align-items: flex-start; /* Align items to the start of the container */
}

#chatbot-window .input-container {
    display: flex;
    padding: 10px;
}

#chatbot-window .input-container input {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#chatbot-window .input-container button {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
