body {
  font-family: "Inter", sans-serif;
  background-color: #F7F7F3;
  color: #1F2420;
}
.font-display {
  font-family: "Space Grotesk", sans-serif;
}

/* drag & drop states (SortableJS) */
.task-ghost {
  opacity: 0.4;
  background: #E7EFEB;
  border-style: dashed !important;
}
.task-drag {
  box-shadow: 0 10px 24px -6px rgba(31, 36, 32, 0.25);
  transform: rotate(1deg);
}
.drag-handle {
  cursor: grab;
  touch-action: none;
}
.drag-handle:active {
  cursor: grabbing;
}

/* visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #2D5A4E;
  outline-offset: 2px;
}

/* respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #D8D5CB; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #C6C2B5; }

/* filter tabs (tasks page) */
.filter-tab {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #E3E1D9;
  background: #FFFFFF;
  color: #6B7268;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.filter-tab:hover { border-color: #2D5A4E55; color: #1F2420; }
.filter-tab.active {
  background: #2D5A4E;
  border-color: #2D5A4E;
  color: #fff;
}
