/* Your existing CSS */

#chatbot {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

#chatbot-header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: relative; /* Relative positioning to position the close button */
}

#chatbot-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

#chatbot-icon {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

#chatbot-messages {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background-color: #0e0d0d;
}

#chatbot-messages div {
    margin-bottom: 10px;
}

#chatbot-input {
    width: calc(100% - 60px);
    padding: 10px;
    border: none;
    border-top: 1px solid #ddd;
}

#chatbot-send {
    width: 50px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

