/* Basic styling for the PC Checklist module */
.pc-checklist-wrapper {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.pc-checklist-list {
  margin: 0!important;
  padding: 0!important;
  list-style: none; /* We use a checkbox instead of a bullet. */
}

.pc-checklist-list li {
  position: relative;  /* So we can absolutely position the checkbox */
  margin-bottom: 1.5em;
  padding-left: 2.5em;   /* Indentation for the "bullet" area */
}

.pc-checklist-list li li {
	margin-bottom: 0;
	padding-left: 0;
}


/* Make label block-level so multiple lines stay aligned. */
.pc-checklist-list li label {
  display: block;
  /* Optional: reduce default paragraph spacing if needed:
     margin: 0; 
  */
}

/* Absolutely position the checkbox in the bullet area. */
.pc-checklist-list input[type="checkbox"].pc-checklist-item {
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  /* You can tweak 'top' if you want to vertically center it with text. */
}

/* "Check/Uncheck All" link styles. */
.pc-checklist-toggle-all {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
  cursor: pointer;
  color: #0073aa; /* WP admin link color for consistency */
}
.pc-checklist-toggle-all:hover {
  color: #005177;
}
