/* Make description full-width */
#edit-title1-titlke1--wrapper--description {
  display: block !important;
  width: 100%;
  margin-bottom: 1em;
}

/* Wrapper for checkboxes/radios */
.checkbox-group-wrapper {
  display: flex !important;
  flex-direction: row;
  gap: 1em !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

/* Force checkboxes/radios inside the wrapper to be inline */
.checkbox-group-wrapper .form-checkboxes,
.checkbox-group-wrapper .form-radios {
  display: flex !important;
  flex-direction: row !important;
  gap: 1em !important;
  flex-wrap: wrap !important;
}

/* Each individual option inline */
.checkbox-group-wrapper .form-checkboxes .form-item,
.checkbox-group-wrapper .form-radios .form-item {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  margin: 0 !important;
}

.checkbox-group-wrapper .form-item label {
  margin-left: 0.5em; /* adjust spacing as needed */
  font-weight: bold !important;
}

