#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    overflow: hidden;
}

#chatbot-header {
    background: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

#chatbot-messages {
    height: 250px;
    overflow-y: auto;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.chatbot-message {
    padding: 8px;
    margin: 5px;
    border-radius: 5px;
    max-width: 80%;
}

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

.chatbot-message.bot {
    background: #f1f1f1;
    color: black;
    align-self: flex-start;
}

#chatbot-input-container {
    display: flex;
    padding: 10px;
    background: #fff;
}

#chatbot-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

#chatbot-send {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 5px;
}

#chatbot-send:hover {
    background: #0056b3;
}

#chatbot-closed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    font-size: 14px;
}

