.main-navigation a {
	font-size: 20px;
}

.more-link {
	display: none;
}

input.Buttons {
  background-color: #0073aa;  /* bleu WordPress */
  color: white;
  font-weight: bold;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input.Buttons:hover {
  background-color: #005a8c;
}

/* Format des questions des sondages */
.poll-header {
  padding: 10px 0;
  border-bottom: 2px solid #ccc;
  margin-bottom: 10px;
}

.poll-question {
  font-size: 1.2em;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.wp-polls-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.poll-answer-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 10px;
  transition: background-color 0.2s;
}

.poll-answer-item:hover {
  background-color: #f0f0f0;
}

.poll-answer-item label {
  display: flex;
  align-items: center;
  gap: 10px; /* espace entre la case et le texte */
}

.poll-answer-item input[type="checkbox"],
.poll-answer-item input[type="radio"] {
  margin: 0;
  transform: scale(1.2);
}

.poll-answer-text {
  font-size: 1em;
  color: #333;
}

.poll-submit {
  text-align: left;
  margin-top: 15px;
}

.poll-submit-button {
  background-color: #0073aa !important; /* Bleu WordPress */
  color: #ffffff !important;
  border: none !important;
  padding: 10px 18px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
	text-transform: none !important;
  transition: background-color 0.2s ease-in-out;
}

.poll-submit-button:hover {
  background-color: #005d8f !important; /* Bleu plus sombre */
}

.poll-answer-item.highlight {
  background-color: #fff3b0; /* Jaune très pâle */
  transition: background-color 0.5s ease;
}

/* Forcer taille et alignement uniforme */
.poll-answer-item label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.poll-answer-item input[type="checkbox"],
.poll-answer-item input[type="radio"] {
  flex: 0 0 auto;             /* Empêche de rétrécir */
  width: 1.2em;               /* Taille fixe */
  height: 1.2em;
  transform: scale(1.2);      /* Agrandissement visuel */
  margin: 0;
  vertical-align: middle;
}

/* Liste sans puces ni marges parasites */
.wp-polls .wp-polls-ul,
.wp-polls .wp-polls-ul ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Lignes sobres */
.wp-polls .poll-result-item {
  padding: 6px 10px;
  margin: 6px 0;
  border-left: 4px solid transparent;
}

/* Mise en valeur discrète du/des choix */
.wp-polls .poll-result-item.is-selected {
  border-left-color: #0073aa;   /* accent fin */
  background: #f7fbff;          /* très léger fond */
  font-weight: 600;
}

/* Couleur du texte */
.wp-polls .poll-result-item .text { color: #222; }

.polls-done{
  margin: 1rem 0;
  padding: .75rem 1rem;
  background: #f7fbff;
  border-left: 4px solid #0073aa;
  border-radius: 6px;
  color: #223;
  font-weight: 500;
  font-size: clamp(1rem, 1.2vw + 0.8rem, 1.25rem);
  line-height: 1.4;
}
