/* === STYLES GÉNÉRAUX === */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 20px;
}

#interface_caisse {
  display: flex;
  gap: 15px;
}

.col {
  flex: 1;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

h2 {
  color: #c40000; /* Auchan red */
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

/* === FICHE PRODUIT === */
#fiche_produit p {
  margin: 5px 0;
}

/* === BOUTONS CALCULATRICE === */
#calculatrice button {
  padding: 12px;
  font-size: 20px;
  border: none;
  border-radius: 6px;
  background-color: #e0e0e0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#calculatrice button:hover {
  background-color: #d5d5d5;
}

#calculatrice button:active {
  transform: scale(0.98);
}

#calculatrice button[style*="background: #28a745"] {
  background-color: #28a745 !important;
  color: white;
}

#calculatrice button[style*="background: #ffc107"] {
  background-color: #ffc107 !important;
  color: black;
}

/* === CHAMP DE SAISIE DIVISÉ === */
#zone_input_group {
  display: flex;
  margin-bottom: 10px;
  height: 50px;
  font-size: 24px;
}

#btn_modifier_qte {
  width: 20%;
  background-color: #c40000;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#btn_modifier_qte.active {
  background-color: #ffc107;
  color: black;
  animation: clignoter 1.2s infinite alternate;
  transform: scale(1.05);
}

@keyframes clignoter {
  0%   { box-shadow: 0 0 10px #ffc107; }
  100% { box-shadow: 0 0 20px #ff6f00; }
}

#input_montant {
  width: 80%;
  border: 1px solid #ccc;
  border-left: none;
  padding-right: 10px;
  text-align: right;
}

/* === BOUTONS DROITE === */
.icon-btn {
  font-size: 24px;
  padding: 12px;
  margin: 5px;
  border-radius: 8px;
  background-color: #eee;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.icon-btn:hover {
  background-color: #ddd;
}

.btn-systeme {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  font-size: 18px;
  background-color: #c40000;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-systeme:hover {
  background-color: #a30000;
}
