/* Chat Icon */
.chat-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #e77829;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.chat-window {
  display: none;
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 320px;
  max-height: 480px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #ddd;
}

.chat-header {
  background: #e77829;
  color: white;
  padding: 12px;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background: #f7f7f7;
}

.chat-footer {
  padding: 10px;
  border-top: 1px solid #ccc;
  background: #fff;
}

.chat-message {
  margin-bottom: 12px;
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  clear: both;
}

.chat-message .meta {
  font-size: 11px;
  color: #666;
  margin-top: 5px;
  text-align: right;
}

.chat-message.user {
  background: #dcf8c6;
  float: right;
  border-bottom-right-radius: 0;
}

.chat-message.bot {
  background: #ffffff;
  border: 1px solid #ddd;
  float: left;
  border-bottom-left-radius: 0;
}

