body {
  font-family: Arial, sans-serif;
}

#chatbox {
  border: 2px solid #0056b3;
  padding: 10px;
  height: 200px;
  overflow-y: auto;
  margin-bottom: 10px;
  background-color: #f5f9ff;
}

.user {
  color: #0056b3;
  text-align: right;
}

.bot {
  color: #003d80;
  text-align: left;
}

input {
  width: 70%;
  padding: 6px;
}

button {
  padding: 6px;
  background-color: #0056b3;
  color: white;
  border: none;
}
