
.chat-container {
  width: 400px;       
  height: 600px;      
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: auto;  
}     
.chat-container {
  width: 80%;
  height: 80%;
  max-width: 800px;   
  max-height: 700px;  
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.chat-header {
  background: #cf5914;
  color: #fff;
  padding: 18px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}
.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: #fef8f5;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
}
.message {
  max-width: 70%;
  padding: 12px 16px;
  border-radius: 20px;
  word-wrap: break-word;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.bot-msg {
  background-color: #cf5914;
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.user-msg {
  background-color: #ffe2d0;
  color: #333;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.suggestions button {
  background-color: #cf5914;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}
.suggestions button:hover {
  background-color: #a94610;
}
.input-container {
  display: flex;
  border-top: 1px solid #ddd;
  padding: 12px;
  background-color: #fff;
}
.input-container input {
  flex-grow: 1;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.input-container button {
  background-color: #cf5914;
  border: none;
  border-radius: 20px;
  padding: 10px 18px;
  margin-left: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}
.input-container button:hover {
  background-color: #a94610;
}