chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  z-index: 1000;
}

chatbot-widget .chatbot {
  width: 320px;
  max-height: 480px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  color: #212121 !important;
}

chatbot-widget .confirm-content {
  color: #212121 !important;
  font-size: 0.765rem;
}

chatbot-widget .header {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

chatbot-widget .history {
  flex: 1;
  overflow-y: auto;
  height: 250px;

  margin-bottom: 0.5rem;
  border: 1px solid #eee;
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 0.765rem;
}

chatbot-widget .input-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

chatbot-widget input[type="text"] {
  flex: 1;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #eee !important;
  color: #212121 !important;
}

chatbot-widget button {
  background-color: #0078D4;
  border: none;
  color: white;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

chatbot-widget button:hover {
  background-color: #005fa3;
}

chatbot-widget button svg {
  width: 16px;
  height: 16px;
}