#chatbot-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
}

#chatbot {
    background-color: #fff;
    border: 1px solid #ccc;
    width: 300px;
    padding: 10px;
    border-radius: 5px;
}

#chatbot-header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 5px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-header button {
    background: none;
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

#chatbot-header button:hover {
    color: #ddd;
}

#chatbot-messages {
    max-height: 300px;
    overflow-y: auto;
    padding: 5px;
    margin-bottom: 10px;
}

#user-input {
    width: 80%;
    padding: 5px;
}

#send-message {
    padding: 5px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

#send-message:hover {
    background-color: #45a049;
}
