@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary: #0f766e;
  --primary-light: #14b8a6;
  --primary-dark: #115e59;
}

body {
  font-family: 'Prompt', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f1f5f9;
  color: #1e293b;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Kanban column styling */
.kanban-column-content {
  min-height: 250px;
  max-height: calc(100vh - 280px);
  overflow-y: auto;
}

/* SortableJS drag & drop visual feedback */
.sortable-ghost {
  opacity: 0.4;
  background-color: #e2e8f0 !important;
  border: 2px dashed #0f766e !important;
  transform: scale(0.98);
}

.sortable-chosen {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: rotate(1deg);
}

.sortable-drag {
  cursor: grabbing !important;
}

/* Pulse badge for overdue */
@keyframes soft-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.03);
  }
}

.animate-pulse-subtle {
  animation: soft-pulse 2s infinite ease-in-out;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  body {
    background: white;
  }
}
