.aboutLink{
	padding: 7px 15px;
	border-radius: 0;
	background: #f6f8fa;
	font-size: 14px;
	margin: 0;
	display: flex;
	gap: 10px;
	align-items: center;
	color: #222;
	border-bottom: solid 1px #d8dee4;
}

.aboutLink:last-of-type {
	border-bottom: none;
}

.aboutLink:hover{
	background: #edeff0;
}
.aboutInfo{
	padding: 3px 15px;
	border-radius: 4px;
	font-size: 14px;
	margin: 5px 0;
	display: flex;
	gap: 10px;
	align-items: center;
	color: #222;
	border: solid 1px #d8dee4;
}
.link_set{
	border-radius: 4px;
	border: solid 1px #d8dee4;
	overflow: hidden;
}
.build_status{
	padding: 7px 15px;
	background: #f6f8fa;
	border-radius: 4px;
	margin-bottom: 20px;
	border: solid 1px #d8dee4;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.numeric-prefix{
	display: none;
}

.build_status .child_terms{
	border: solid 1px;
	font-size: 75%;
	padding: .25em .5em;
	border-radius: .5em;
}	


/* MODAL */
#modal-build-status-content ul.acf-radio-list:focus-within, 
#modal-build-status-content ul.acf-checkbox-list:focus-within {
	border: 1px solid transparent;
	border-radius: 6px;
}

#modal-build-status-content .full_height .categorychecklist-holder {
	border: none !important;
	border-radius: 3px;
	max-height: none !important;
	overflow: auto;
}

#modal-build-status-content .full_height .acf-taxonomy-field label {
	padding: 5px 10px !important;
	display: block !important;
	border-radius: 4px;
	margin-bottom: 4px;
	background: #ededed;
}

#modal-build-status-content .full_height .acf-taxonomy-field label:hover {
	background: #e7e7e7;
}

#modal-build-status-content .full_height  .acf-checkbox-list ul.children {
	padding-left: 18px;
	padding-bottom: 0;
}

/* Hide the actual checkbox */
#modal-build-status-content .acf-checkbox-list input[type="checkbox"] {
	display: none;
}

/* Style the label as a custom checkbox */
#modal-build-status-content .acf-checkbox-list label {
	display: inline-block;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	background-color: #fff;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	background: #ededed;
}

/* Add hover effect */
#modal-build-status-content .acf-checkbox-list label:hover {
	background: #e7e7e7;
}

/* Styles for checked parent */
#modal-build-status-content .parent-checked .children {
	display: block; /* Show children */
}

#modal-build-status-content .checked {
	background-color: #418df2 !important;
	color: #fff; /* Change text color to white */
}

/* Reset styles for unchecked */
#modal-build-status-content .checked + span {
	background-color: #fff;
	color: #000; /* Reset text color to black */
}

/* Styles for child checkboxes */
#modal-build-status-content .child-checked {
	background-color: #fff;
	color: #000; /* Reset text color for unchecked children */
}