﻿#asistente-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #6a006a;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

#panel-asistente {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 15px;
  width: 260px;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  max-height: 300px;
  overflow-y: auto;
}

#panel-asistente p {
  margin: 0 0 10px;
  font-size: 14px;
}

.faq-btn {
  display: block;
  width: 100%;
  margin: 4px 0;
  padding: 8px;
  font-size: 14px;
  background-color: #f0f0f0;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: left;
}

.faq-btn:hover {
  background-color: #e0e0e0;
}

.respuesta-box {
  margin-top: 10px;
  padding: 8px;
  background-color: #f9f9f9;
  border-left: 4px solid #6a006a;
  font-size: 14px;
  border-radius: 6px;
}

#panel-asistente::-webkit-scrollbar {
  width: 6px;
}

#panel-asistente::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border-radius: 10px;
}
