/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

  .table-bordered > thead > tr > th {
    border: 1px solid #dadada;
  }
  .table-bordered > thead > tr > td {
    border: 1px solid #dadada;
  }


  
  
/* little icon near the question-help */
.ls-questionhelp {
    position: relative;
    color: #007bff; /* Définir la couleur de l'aide des questions en bleu */
}



.dir-ltr .ls-questionhelp {
    margin-left: 1.2em;
}

.dir-rtl .ls-questionhelp {
    margin-right: 1.2em;
}



.ls-questionhelp:before {
    content: "\f059"
}

.ls-questionhelp:before {
    display: block;
    position: absolute;
    font-family: FontAwesome;
    font-size: inherit;
    line-height: inherit;
    height: 100%;
}



/* If you want to center the icon */
/*
.ls-questionhelp:before {
    top:50%;
    margin-top:-0.7em;
}
*/
.dir-ltr .ls-questionhelp:before {
    left: -1.1em;
}

.dir-rtl .ls-questionhelp:before {
    right: -1.1em;
} 
 

  
  
/* Multiplechoice bootstrap buttons unchecked focus*/
.btn-check .btn-primary:focus, .btn-check:focus+.btn-primary {
    background-color: #0d6efd;
    border: 1px solid #0B397D;
    box-shadow: none;
    color: #fff;
}
.btn-check:focus:checked + .btn-primary, .btn-check .btn-primary:focus:checked {
    background-color: #FDA90D;   /* couleur orange lorsque l'on sélectionne */
    border-color: #FDA90D;       /* contour orange lorsque l'on sélectionne */
    color: #fff;
 }