#ss-ai-chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Arial, sans-serif;
  z-index: 9999;
}
.chat-header {
  background: #0073aa;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
}
.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  height: 250px;
}
.chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}
.chat-input input {
  flex: 1;
  border: none;
  padding: 10px;
}
.chat-input button {
  background: #0073aa;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
