.form-input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #1e293b;
}

.tab-btn {
  color: #64748b;
}
.tab-btn.border-slate-800 {
  color: #0f172a;
}

.kanban-card:active {
  opacity: 0.6;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-toast {
  animation: toast-in 0.2s ease-out;
  transition: opacity 0.3s ease-out;
}

.kanban-card {
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  touch-action: none;
  user-select: none;
}
.kanban-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.kanban-card:active {
  cursor: grabbing;
}

#lead-modal {
  animation: toast-in 0.15s ease-out;
}
