/* #chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #006633;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}
#chat-icon:hover {
  transform: scale(1.05);
}

#chat-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 360px;
  height: 520px;
  background-color: #fefefe;
  border: 1.5px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
}


#chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background-color: #006633;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

#chat-header .close-btn {
  cursor: pointer;
  font-size: 20px;
}

#chat-log {
  flex: 1;
  overflow-y: auto;
  font-size: 14px;
  padding: 10px 12px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 400px;
}

.chat-message {
  padding: 8px 12px;
  border-radius: 16px;
  max-width: 80%;
  word-wrap: break-word;
}
.chat-message.user {
  align-self: flex-end;
  background-color: #d4edda;
}
.chat-message.bot {
  align-self: flex-start;
  background-color: #e2e3e5;
}

#chat-input {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #ccc;
}

#chat-message {
  flex: 1;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  height: 50px;
  box-sizing: border-box;
}

#chat-input button {
  padding: 0 20px;
  font-size: 16px;
  background-color: #006633;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
  height: 50px;
  box-sizing: border-box;
}
#chat-input button:hover {
  background-color: #004d29;
}
 */
