/* Daydo Flow アプリ用の補助スタイル */
* { -webkit-tap-highlight-color: transparent; }
body { font-family: -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif; }

.priority-1 { border-left: 5px solid #ef4444; }
.priority-2 { border-left: 5px solid #f97316; }
.priority-3 { border-left: 5px solid #eab308; }
.priority-4 { border-left: 5px solid #22c55e; }
.priority-5 { border-left: 5px solid #94a3b8; }

.status-done { opacity: .55; }
.status-done .task-title { text-decoration: line-through; }

/* ガントチャートのバー */
.gantt-bar { height: 22px; border-radius: 6px; background: linear-gradient(90deg,#0891b2,#06b6d4); }
.gantt-row:hover { background: #f1f5f9; }

/* 検索候補 */
.search-suggest { max-height: 320px; overflow-y: auto; }

/* スピナ */
.spinner { border: 3px solid #e2e8f0; border-top-color: #0891b2; border-radius: 50%; width: 28px; height: 28px; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

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