/* ===============================
   CHAT NEXBOLT – ISOLAMENTO TOTAL
   =============================== */

#chat-nexbolt-root {
  all: initial;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99999;
  font-family: Arial, sans-serif;
}

#chat-nexbolt-root * {
  all: unset;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

#chat-widget {
  width: 360px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.25);
  overflow: hidden;
}

/* Header */
#chat-header {
  background: #0b3c5d;
  color: #ffffff;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

/* Corpo */
#chat-body {
  display: block;
}

#messages {
  height: 260px;
  overflow-y: auto;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.user {
  margin-bottom: 8px;
}

.bot {
  margin-bottom: 8px;
  color: #0b3c5d;
}

/* Input */
.input-area {
  display: flex;
  padding: 8px;
  gap: 6px;
}

.input-area input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-area button {
  padding: 8px 12px;
  background: #0b3c5d;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
