/* 🎨 Couleurs de fond dynamiques */
:root {
  --ticket-bg-basse: #e0f2fe;
  --ticket-bg-normale: #fff7ed;
  --ticket-bg-haute: #fee2e2;
}

/* Kanban layout */
.kanban-col {
  display: flex;
  flex-direction: column;
  max-height: 85vh;
}

.kanban-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.kanban-list {
  overflow-y: auto;
}

/* Cards */
.kanban-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kanban-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Scrollbar discrète */
.kanban-list::-webkit-scrollbar {
  width: 6px;
}
.kanban-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* 🔍 Recherche machine */
#machineSearch::placeholder {
  color: #94a3b8;
}
#machineSearch:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
}
