/* ===== DOOH CONSULTING CHAT WIDGET CSS ===== */
#njChatContainer {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#njPremiumChat {
  flex-direction: column;
  width: 380px;
  height: 550px;
  display: none;
  background: rgba(89, 217, 217, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(89, 217, 217, 0.4);
}
#njPremiumChat.show { display: flex; }
#njChatFab {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, #008888 0%, #004f4f 50%, #003737 100%);
  color: #fcd34d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(89, 217, 217, 0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}
#njChatFab:hover { transform: scale(1.1); }
#njChatBody {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: rgba(255,255,255,0.9);
  word-break: break-word;
}
.nj-chat-input-area {
  padding: 16px 20px;
  background: rgba(255,255,255,0.95);
  border-top: 1px solid rgba(89, 217, 217, 0.4);
  flex-shrink: 0;
}
.nj-chat-input-area .input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 16px;
  padding: 4px 16px;
  border: 1px solid #d1d5db;
}
.nj-chat-input-area input {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 13px;
  font-family: Inter, sans-serif;
  padding: 10px 0;
  outline: none;
  color: #1f2937;
}
.nj-chat-input-area .send-btn { color: #59d9d9; font-size: 22px; cursor: pointer; }
.msg-user { display: flex; justify-content: flex-end; margin-bottom: 8px; }
.msg-user .bubble {
  background: #59d9d9;
  color: #003737;
  padding: 12px 16px;
  border-radius: 20px 20px 4px 20px;
  font-size: 13px;
  max-width: 80%;
  font-family: Inter, sans-serif;
  line-height: 1.5;
}
.msg-bot { display: flex; gap: 8px; margin-bottom: 8px; }
.msg-bot .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.msg-bot .bubble {
  background: white;
  padding: 12px 16px;
  border-radius: 20px 20px 20px 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-size: 13px;
  max-width: 85%;
  border: 1px solid #e5e7eb;
  color: #1f2937;
  font-family: Inter, sans-serif;
  line-height: 1.5;
}
@media (max-width: 440px) {
  #njPremiumChat { width: calc(100vw - 32px) !important; max-width: 380px !important; height: 75vh !important; }
}
