.cfs-chatbot-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cfs-chatbot-trigger {
  background: #334458;
  color: #ffffff;
  border: none;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(51, 68, 88, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.cfs-chatbot-trigger:hover {
  background: #1e293b;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 174, 239, 0.4);
}

.cfs-chatbot-window {
  width: 360px;
  height: 480px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  position: absolute;
  bottom: 60px;
  right: 0;
  transition: all 0.3s ease;
}

.cfs-chatbot-window.hidden {
  display: none !important;
}

.cfs-chat-header {
  background: #334458;
  color: #ffffff;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cfs-chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cfs-chat-logo {
  height: 32px;
  width: auto;
}

.cfs-chat-header h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.cfs-online-badge {
  font-size: 11px;
  color: #38bef8;
}

.cfs-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

.cfs-chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
}

.cfs-msg {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.cfs-msg-bot {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.cfs-msg-user {
  background: #00aeef;
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.cfs-chat-chips {
  padding: 8px 12px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.cfs-chip {
  background: #f1f5f9;
  color: #334458;
  border: 1px solid #cbd5e1;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cfs-chip:hover {
  background: #00aeef;
  color: #ffffff;
  border-color: #00aeef;
}

.cfs-chat-footer {
  padding: 12px;
  background: #ffffff;
  display: flex;
  gap: 8px;
  border-top: 1px solid #e2e8f0;
}

.cfs-chat-footer input {
  flex: 1;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
}

.cfs-send-btn {
  background: #00aeef;
  color: #ffffff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-weight: 700;
  cursor: pointer;
}
