/* Thème CRM Tharel Lefebvre — sobre, basé sur l'identité du Groupe Lefebvre
   Automobile (rouge #E1001A sur blanc, bleu marine secondaire). */
:root {
  --tl-red: #e1001a;
  --tl-red-dark: #b80016;
  --tl-navy: #1f356f;
  --bs-link-color: var(--tl-navy);
  --bs-link-hover-color: var(--tl-red);
}

/* Barre de navigation claire avec liseré rouge de marque */
.tl-navbar {
  background: #fff;
  border-bottom: 3px solid var(--tl-red);
}
.navbar-brand img {
  height: 40px;
  width: auto;
}

/* Boutons primaires aux couleurs de la marque */
.btn-primary {
  --bs-btn-bg: var(--tl-red);
  --bs-btn-border-color: var(--tl-red);
  --bs-btn-hover-bg: var(--tl-red-dark);
  --bs-btn-hover-border-color: var(--tl-red-dark);
  --bs-btn-active-bg: var(--tl-red-dark);
  --bs-btn-active-border-color: var(--tl-red-dark);
  --bs-btn-disabled-bg: var(--tl-red);
  --bs-btn-disabled-border-color: var(--tl-red);
}

/* Focus de champ au rouge de marque */
.form-control:focus,
.form-select:focus {
  border-color: var(--tl-red);
  box-shadow: 0 0 0 0.2rem rgba(225, 0, 26, 0.15);
}

a {
  color: var(--tl-navy);
}
a:hover {
  color: var(--tl-red);
}

.clickable-row {
  cursor: pointer;
}
