body {
/*  font-family: Arial, sans-serif;*/
}

/*.chatbot {*/
/*  width: 400px;*/
/*  height: 500px;*/
/*  background-color: #f9f9f9;*/
/*  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
/*  border-radius: 10px;*/
/*  position: fixed;*/
/*  bottom: 20px;*/
/*  right: 20px;*/
/*  overflow: hidden;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*}*/

.chatbox {
  flex-grow: 1;
  list-style-type: none;
  padding: 20px;
  margin: 0;
  overflow-y: auto;
}

input[type="email"],
input[type="tel"],
textarea {
  width: 100%; /* Adjust width relative to the chatbox */
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 10px; /* Rounded corners */
  outline: none;
  font-size: 16px;
}

.chat-input {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#send-btn {
  background-color: blue;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}

#send-btn:hover {
  background-color: blueviolet;
}

/* Styles for the button to toggle the chatbot */
/*
.chatbot-toggler {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4CAF50;
  border: none;
  padding: 15px;
  border-radius: 20%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
*/

.chatbot-toggler .material-symbols-rounded {
  font-size: 24px;
}
