/* styles.css */
#chatWindow {
  display: none;
}
#userDetails {
	display: grid;
}
.hdlmsg {
	margin: 5px 0;
}
.hdlmsg b {
	margin: 5px;
	color: #3b5998;
}
.usrmsg {
	margin 5px 0;
}
/* Main body styles */
body {
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

/* Chat window styles */
#chatWindow {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  margin: 0 auto;
  max-width: 800px;
  padding: 20px;
}

#chatHistory {
  height: 300px;
  overflow-y: scroll;
  margin-bottom: 10px;
}

#userInput {
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px;
}

button {
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  padding: 10px;
  transition: all 0.2s;
}

button:hover {
  background-color: #3e8e41;
}

/* User details styles */
#userDetails {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  margin: 0 auto;
  max-width: 500px;
  padding: 20px;
  text-align: center;
}

label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

input[type="text"],
input[type="email"] {
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px;
  margin-bottom: 10px;
  width: 95%;
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: #4CAF50;
}

input[type="submit"] {
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  padding: 10px;
  transition: all 0.2s;
}

input[type="submit"]:hover {
  background-color: #3e8e41;
}
