/**
 * Couleurs sémantiques (charte Mon Stage) — aligne les variables Bootstrap 5
 * avec les teintes utilisées pour .bg-success / .bg-info / .bg-warning / .bg-danger
 * (neumorphism.css applique aussi ces teintes avec !important sur .bg-*).
 */
:root,
[data-bs-theme="light"] {
  --bs-success: #4cbab3;
  --bs-success-rgb: 76, 186, 179;
  --bs-info: #008ed0;
  --bs-info-rgb: 0, 142, 208;
  --bs-warning: #eca622;
  --bs-warning-rgb: 236, 166, 34;
  --bs-danger: #e01271;
  --bs-danger-rgb: 224, 18, 113;
  /* Secondaire « primary » (bleu clair charte) */
  --bs-primary-bis: #62bce5;
  --bs-primary-bis-rgb: 98, 188, 229;
}

.bg-primary-bis {
  background-color: var(--bs-primary-bis) !important;
}

a.bg-primary-bis:hover,
a.bg-primary-bis:focus,
button.bg-primary-bis:hover,
button.bg-primary-bis:focus {
  background-color: #4aa8d4 !important;
}
