/* Tailwind CDN만으로 충분하지 않은 소소한 보정 스타일 */

body {
  font-family: "Inter", "Noto Sans KR", -apple-system, sans-serif;
}

/* FullCalendar가 Tailwind의 preflight와 살짝 충돌하는 부분 보정 */
.fc {
  --fc-border-color: #e5e7eb;
  --fc-today-bg-color: #eff6ff;
  --fc-button-bg-color: #4f46e5;
  --fc-button-border-color: #4f46e5;
  --fc-button-hover-bg-color: #4338ca;
  --fc-button-active-bg-color: #3730a3;
}

.fc a {
  text-decoration: none;
}

/* 칸반 카드 드래그 중 스타일 */
.kanban-card.dragging {
  opacity: 0.4;
}

.kanban-column.drag-over {
  background-color: #eef2ff;
}

/* 스크롤바 살짝 다듬기 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

[x-cloak] {
  display: none !important;
}
.col-resizer { touch-action: none; } /* 모바일에서 스크롤 제스처와 충돌 방지 */
