/* === Защита от ботов — Спрашиватель === */
.bot-check-wrapper {
  text-align: center;
  margin: 15px 0;
  user-select: none;
}
.bot-check-title {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
}
.bot-check-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}
.bot-check-icon {
  font-size: 40px;
  cursor: pointer;
  padding: 8px 14px;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: all 0.15s;
  background: #f9f9f9;
  line-height: 1;
}
.bot-check-icon:hover {
  border-color: #2196F3;
  background: #e3f2fd;
}
.bot-check-icon.selected {
  border-color: #4CAF50;
  background: #c8e6c9;
  box-shadow: 0 0 0 2px #4CAF50;
}
.bot-check-error {
  color: red;
  font-size: 12px;
  display: none;
  margin-top: 4px;
}
.bot-check-hidden {
  display: none;
}
