/* COCO patch for Dify 1.16.1
 * Message TTS / copy / regenerate sit in [data-testid=operation-actions]
 * with Tailwind "hidden" + "group-hover:flex". Touch screens never hover,
 * so the play button is invisible. Keep desktop hover; show on touch/narrow.
 */
@media (hover: none), (max-width: 768px) {
  [data-testid="operation-actions"] {
    display: flex !important;
  }

  [data-testid="operation-bar"] {
    left: auto !important;
    right: 0.5rem !important;
    top: auto !important;
    bottom: -1rem !important;
    z-index: 10;
  }
}
