.scrollbar-none::-webkit-scrollbar { display: none; }
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes ts-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: ts-fade-in 0.15s ease-out; }

@keyframes ts-bounce-msg {
  0%, 100% { transform: translateY(-4%); }
  50% { transform: translateY(0); }
}
.toast-bounce { animation: ts-bounce-msg 1s infinite; }

textarea, input, select { font-family: inherit; }

::selection { background: #0ea5e9; color: white; }

.sig-canvas { touch-action: none; }
