:root { scroll-behavior: smooth; }

/* Custom Scrollbar pour le Gantt */
.gantt-scroll::-webkit-scrollbar { height: 8px; }
.gantt-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

/* Ligne rouge "Aujourd'hui" */
.today-line { border-left: 2px dashed #ff4757; z-index: 10; pointer-events: none; }

/* Labels pour les petites tâches */
.task-label-outside { position: absolute; left: 105%; white-space: nowrap; font-weight: 700; font-size: 11px; }

/* Adaptation Dark/Light Mode pour les labels externes */
[data-theme='dark'] .task-label-outside { color: #94a3b8; }
[data-theme='light'] .task-label-outside { color: #475569; }

/* Animations des barres de tâches */
.task-bar { min-width: 35px; transition: transform 0.2s, box-shadow 0.2s; }
.task-bar:hover { transform: scaleY(1.05); z-index: 50; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

/* Prevent horizontal scroll on mobile body */
body { overflow-x: hidden; }