/* Base appearance of Likert "button" text blocks */
.webform-options-display-buttons-label .field-name {
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 4px;
  background-color: #f8f8f8; /* light neutral */
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Highlight ONLY the selected radio's label */
.visually-hidden.form-radio:checked + .field-name {
  background-color: #1a5a96;  /* GCWeb Primary Blue */
  color: #fff;
}

/* Optional: hover effect for all unselected labels */
.webform-options-display-buttons-label:hover .field-name {
  background-color: #dfe7f2;
}


textarea.form-textarea {
  width: 100% !important;
  max-width: 100% !important;
}

