body {
  background-color: #f8f9fa;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.kanban-column {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  min-height: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.kanban-card {
  margin-bottom: 10px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s ease-in-out;
}

.kanban-card:hover {
  transform: scale(1.02);
}

.badge-priorite {
  font-size: 0.8rem;
  padding: 0.4em 0.6em;
  border-radius: 0.5em;
  color: white;
}

/* 🎯 Couleurs des priorités */
.badge-haute {
  background-color: #dc3545; /* rouge */
}

.badge-moyenne {
  background-color: #fd7e14; /* orange */
}

.badge-basse {
  background-color: #ffc107; /* jaune */
  color: #212529; /* meilleur contraste sur fond clair */
}

.badge-non-definie {
  background-color: #6c757d; /* gris */
}