/* compensair-chatwoot-test custom CSS — served from Chatwoot's public/.
   Loaded via a <link> tag patched into app/views/layouts/vueapp.html.erb.
   No Vite rebuild needed: Rails serves public/ files directly.

   Goal: hide UI affordances we don't use in the test deployment, so operators
   focus on the AI-suggested reply + sidebar context. */

/* ---- Contact panel action buttons (top sidebar) ----
   ContactInfo.vue renders 5 round NextButtons in one row: New message,
   Voice call, Edit contact, Merge, Delete. We hide all except Voice call.
   Target by the icon class each NextButton renders inside the <button>. */

button:has(> .i-ph-chat-circle-dots),   /* New message */
button:has(> .i-ph-pencil-simple),      /* Edit contact */
button:has(> .i-ph-arrows-merge),       /* Merge contact */
button:has(> .i-ph-trash) {             /* Delete contact (admin only) */
  display: none !important;
}
