/* styles.css */
.chatbot-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 300px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 500;
}

.chat-header {
    background: #007bff;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px 5px 0 0;
}

.chat-body {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #EFEAE2;
}

.chat-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}

.chat-footer button {
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
}

.chatbot-toggle {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
}

.message {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.message.user .text {
    background: #94b8e1;
    color: #333;
    border-radius: 10px 10px 0 10px;
    padding: 10px;
    margin-left: auto;
}

.message.bot .text {
    background: #fff;
    color: #333;
    border-radius: 10px 10px 10px 0;
    padding: 10px;
    margin-right: auto;
}
