/* 🎨 Style global Boulangerie Delvaux */

/* --- Corps de page --- */
body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

/* --- Titres --- */
h2 {
  font-weight: bold;
  color: #6c3f13; /* marron rappel boulangerie */
}

/* --- Navbar et boutons de retour --- */
.btn-secondary {
  background-color: #6c757d;
  border: none;
}
.btn-secondary:hover {
  background-color: #5a6268;
}

/* --- Boutons primaires --- */
.btn-primary {
  background-color: #6c3f13; /* marron doré */
  border: none;
}
.btn-primary:hover {
  background-color: #8a5623;
}

/* --- Boutons succès --- */
.btn-success {
  background-color: #198754;
  border: none;
}
.btn-success:hover {
  background-color: #146c43;
}

/* --- Cartes --- */
.card {
  border-radius: 10px;
}
.card-header {
  font-weight: bold;
}

/* --- Tableaux --- */
.table th, .table td {
  vertical-align: middle;
}
.table-responsive {
  overflow-x: auto;
}

/* --- Alertes --- */
.alert-danger {
  font-weight: bold;
  font-size: 0.95rem;
}

/* --- Footer (option si tu ajoutes) --- */
footer {
  margin-top: 30px;
  padding: 10px;
  text-align: center;
  background-color: #6c3f13;
  color: white;
}
