#quiz-bubble {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #4f8cff;
  color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#quiz-panel {
  position: fixed;
  bottom: 110px;
  left: 25px;
  width: 320px;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  display: none;
  z-index: 9999;
  font-family: Arial;
}

.quiz-question {
  margin-bottom: 12px;
}

.quiz-scale input {
  width: 100%;
  margin: 10px 0;
}

.quiz-btn {
  background:#4f8cff;
  color:white;
  padding:10px;
  border:none;
  border-radius:6px;
  width:100%;
  cursor:pointer;
}

.quiz-result {
  text-align:center;
}

.quiz-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #555;
  margin-top: 6px;
}

@keyframes quizPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(79,140,255,0.6); }
  50% { transform: scale(1.06); box-shadow: 0 0 18px rgba(79,140,255,0.6); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(79,140,255,0.6); }
}

#quiz-bubble {
  animation: quizPulse 2s infinite;
}