/* ===============================
   BOTÓN CHATBOT EN NAVBAR/SIDEBAR
================================ */

/* Botón en navbar */
.chatbot-nav-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #004080 0%, #0066cc 100%);
  color: #fff !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 64, 128, 0.3);
}

.chatbot-nav-icon:hover {
  background: linear-gradient(135deg, #0066cc 0%, #0080ff 100%);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.chatbot-nav-icon i {
  font-size: 18px;
}

/* Botón en sidebar */
.chatbot-sidebar-btn {
  background: linear-gradient(135deg, #004080 0%, #0066cc 100%) !important;
  color: #fff !important;
  border-radius: 8px !important;
  margin-top: 1rem;
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem !important;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 64, 128, 0.3);
}

.chatbot-sidebar-btn:hover {
  background: linear-gradient(135deg, #0066cc 0%, #0080ff 100%) !important;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.chatbot-sidebar-btn i {
  font-size: 18px;
}
