/* Reset some default styles */
body,
h1,
h2,
p,
ul,
li,
form,
button {
    margin: 0;
    padding: 0;
}

/* Set a background color for the body */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


/* Style the chat container (hidden initially) */
#chat {

    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style the chat messages display area */
#messages {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

#messages p {
    margin: 0;
    padding: 5px 0;
}

/* Style the chat input and send button */
#messageInput {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

#sendButton {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
}

#sendButton:hover {
    background-color: #0056b3;
}