/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f0f0f0;
}

/* Chat application title */
h1 {
    color: #333;
    text-align: center;
}

/* Chat window styles */
#chatWindow {
    border: 1px solid #ccc;
    padding: 10px;
    height: 300px;
    overflow-y: scroll;
    margin-bottom: 10px;
    background-color: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Chat form styles */
#inputForm {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Input field styles */
#inputForm input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Button styles */
#inputForm button {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #4caf50;
    color: #fff;
    cursor: pointer;
}

/* Button hover effect */
#inputForm button:hover {
    background-color: #45a049;
}
