body {
  font-family: Arial, sans-serif;
  background: #fdfaf6;
  margin: 0;
  padding: 0;
}

#chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #6c4b3d;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

#chat-toggle img {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

#chat-container-wrapper {
  position: fixed;
  bottom: 115px;
  right: 20px;
  z-index: 9998;
  display: none;
}

.chat-container {
  width: 350px;
  max-height: 550px;
  display: flex;
  flex-direction: column;
  border: 2px solid #6c4b3d;
  border-radius: 12px;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.header {
  background: #6c4b3d;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header img {
  width: 40px;
  height: 40px;
}

.language-select {
  margin: 10px;
  text-align: right;
}

.chat-box {
  padding: 15px;
  flex-grow: 1;
  overflow-y: auto;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.chat-message {
  margin-bottom: 10px;
}

.user {
  text-align: right;
}

.bot {
  text-align: left;
}

.suggestions {
  padding: 10px;
  background: #f8f2ec;
  border-top: 1px solid #eee;
}

.suggestions span {
  display: inline-block;
  background: #d3b89f;
  color: #2b2b2b;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 3px;
  cursor: pointer;
  font-size: 13px;
}

.input-box {
  display: flex;
  padding: 10px;
  gap: 10px;
  border-top: 1px solid #eee;
}

input[type="text"] {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
}

button {
  padding: 10px 20px;
  background: #a3938c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.chat-message.user {
  text-align: right;
  background-color: #e0f7fa;
  /* light cyan */
  padding: 10px;
  border-radius: 10px;
  margin: 5px 0;
  display: inline-block;
  max-width: 80%;
  color: #00363a;
}

.chat-message.bot {
  text-align: left;
  background-color: #f1f8e9;
  /* light greenish */
  padding: 10px;
  border-radius: 10px;
  margin: 5px 0;
  display: inline-block;
  max-width: 80%;
  color: #2b3d0b;
}