.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
}

.custom-checkbox:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px; /* Ajustement pour placer le point vert */
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #4CAF50; /* Vert lorsque coché */
    border-radius: 50%;
}

.custom-checkbox:not(:checked)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px; /* Ajustement pour placer le point jaune */
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #FFD700; /* Jaune lorsque non coché */
    border-radius: 50%;
}
