/* Prevent Agents from adding tags, just with CSS */
/* Opportunities, Active and Past Workflows */
.bg-gray-100:has(#tagText) #listbox-item-0:has(svg), .bg-gray-100:has(button[id^="headlessui-disclosure-button"]) {
  display: none;
}

.bg-gray-100:has(input[id="all-channels"]) {
  display: block;
}

/* POC to hide certain questions in the Additional Info tab in Eliza */
/* .flex.justify-between ~ div:has(#sq-ft){ */
  /* background-color: red */
/* } */

/* Hides all Additional Info questions, except for the first 2 qualifying questions */
#app > div > div:nth-child(1) > div > div.border-l.border-l.w-4\/12 > div.overflow-y-auto.py-4.px-6 > div > div:nth-child(2) .mt-6,
#app > div > div:nth-child(1) > div > div.border-l.border-l.w-4\/12 > div.overflow-y-auto.py-4.px-6 > div > div:not(.text-center):not(.mt-2) .mt-6:not(.grid) {
  display: none;
}
#app > div > div:nth-child(1) > div > div.border-l.border-l.w-4\/12 > div.overflow-y-auto.py-4.px-6 > div > div:not(.text-center):not(.mt-2):nth-child(2) .mt-6,
#app > div > div:nth-child(1) > div > div.border-l.border-l.w-4\/12 > div.overflow-y-auto.py-4.px-6 > div > div:not(.text-center):not(.mt-2):nth-child(3) .mt-6:not(.grid) {
  display: block !important;
}

/* Settings Hide */
nav > a[href="/settings/company"], 
nav > a[href="/settings/faqs"], 
nav > a[href="/settings/templates"], 
nav > a[href="/settings/dispositionComments"], 
nav > a[href="/settings/reports"], 
nav > a[href="/settings/users"], 
nav > a[href="/settings/locations"]  {
  display: none;
}

/* Remove all Delete buttons */
button[data-test-id="Delete"] {
  display: none;
}
