/* Hide the entire Priority field row (label + dropdown) */
.row.form-group select#priority_id {
  display: none !important;
}

/* Also hide its parent row if the above leaves empty space */
.row.form-group:has(#priority_id) {
  display: none !important;
}

/* Frontend toolbar: hide ONLY the 'Change Ticket Priority' group */
.hdp-toolbar-container .btn-group:nth-of-type(3) {
  display: none !important;
}

/* Add space between remaining buttons in the toolbar */
.hdp-toolbar-container .btn-group {
  margin-right: 8px !important; /* adjust to your liking */
}