/* Style for parent project types in checkbox lists */
input[type="checkbox"][value^="parent_"] {
    pointer-events: none;
    opacity: 0;
}

input[type="checkbox"][value^="parent_"] + label {
    font-weight: bold;
    cursor: default;
    color: #333;
}

input[type="checkbox"][value^="parent_"] + label strong {
    font-weight: bold;
}

/* Ensure child types are properly indented */
input[type="checkbox"]:not([value^="parent_"]) + label {
    margin-left: 1.5rem;
}

/* Select2 multi-select badge styling */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e9ecef !important;
    border-color: #ced4da !important;
    color: #212529 !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #495057 !important;
    border-right-color: #ced4da !important;
}
