/* --- Style TEX : pastille verte + chevron blanc --- */
ul.sc_list.sc_list_style_tex { padding-left: 0; }

.sc_list_style_tex li{
  list-style: none;
  position: relative;
  margin: .35em 0;
  padding-left: 1.8em;          /* espace pour la pastille */
}

.sc_list_style_tex li:before{
  content: "›";                 /* chevron (peut être ">" ou "\203A") */
  display: inline-block;
  width: 1.1em; height: 1.1em;
  line-height: 1.1em;
  text-align: center;
  font-weight: 700;
  font-size: .9em;
  color: #fff;                  /* chevron blanc */
  background: #27c93f;          /* vert TEX par défaut */
  border-radius: 50%;
  position: absolute;
  left: 0; 
  top: .1em;                    /* ajuste la verticale si besoin */
  box-shadow: 0 0 0 2px rgba(39,201,63,.20); /* léger halo, optionnel */
}

/* (facultatif) variante taille compacte */
.sc_list_style_tex.sm li{ padding-left: 1.5em; }
.sc_list_style_tex.sm li:before{
  width: 1em; height: 1em; line-height: 1em; font-size: .85em;
}

/* (facultatif) changer la couleur via une classe */
.sc_list_style_tex.blue li:before  { background:#3498db; box-shadow:0 0 0 2px rgba(52,152,219,.2);}
.sc_list_style_tex.orange li:before{ background:#f39c12; box-shadow:0 0 0 2px rgba(243,156,18,.2);}

