/******************
    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
*/


/* Change primary button font color */
.btn-primary {
    color: #000000 !important; /* Change to your desired color code */
}

th.answertext {
    color: #000000 !important; /* Change to your desired color code */
}

/* target standard theme question numbers */
.question-number, 
.text-muted.question-number {
    color: #000000 !important;        /* Change the text color */
    font-size: 16px;       /* Adjust font size */
    text-decoration: underline;
}

/* Add custom text directly before the number */
.question-number::before,
.text-muted.question-number::before {
    content: "Question n°"; /* Your custom text (keep the space at the end) */
    color: #000000;          /* Different color for the text if desired */
    font-weight: normal;     /* Normal weight for the prefix text */
    text-decoration: underline;
}

