
.respuesta-contenido {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  background: #f8fafc;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.chips-container {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-sesion {
  padding: 6px 12px;
  border-radius: 20px;
  background: #2563eb;
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.chip-sesion:hover {
  background: #1d4ed8;
}
