/* ===========================
   WooCommerce – États de commande
   =========================== */

.woocommerce-orders-table .order-status {
  display: inline-block;
  padding: 0.4em 0.7em;
  border-radius: 4px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  font-size: 0.9rem;
  line-height: 1.2;
}

/* Pré-commande */
.order-status-preorder,
.status-preorder {
  background-color: #5E929F; 
  color: #F4F3F2;
}

/* En attente de paiement */
.status-pending {
  background-color: #c6e1c6;
}

/* En cours de traitement */
.status-processing {
  background-color: #F0E7C8; 
  color: #103745;
}

/* En attente */
.status-on-hold {
  background-color: #AAC9BA;
  color: #103745;
}

/* Devis accepté */
.status-devis-accepte{
  background-color: #EED481;
  color: #103745;
}

/* Terminée */
.status-completed {
  background-color: #E9F57F;
  color: #103745;
}

/* 🔴 Annulée */
.status-cancelled {
  background-color: #e5e5e5;
}

/* ⚪ Remboursée */
.status-refunded {
  background-color: #e5e5e5;
}

/* ⚫ Échouée */
.status-failed {
  background-color: #eba3a3;
}

/* Effet visuel harmonieux */
.woocommerce-orders-table .order-status span {
  color: inherit;
}
