#aivio-chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2563eb;
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
}

#aivio-chatbox {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 360px;
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  z-index: 9999;
}

.chat-header {
  background: #1e293b;
  padding: 12px;
  display: flex;
  justify-content: space-between;
}

#chat-body {
  padding: 12px;
  max-height: 320px;
  overflow-y: auto;
}

.bot-message, .user-message {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
}

.bot-message {
  background: #1e293b;
}

.user-message {
  background: #2563eb;
  text-align: right;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
}

.tool-btn {
  background: #1e293b;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.tool-btn:hover {
  background: #2563eb;
}

.chat-input {
  display: flex;
  padding: 10px;
}

#user-input {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: none;
}

#send-btn {
  margin-left: 8px;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
}
