.info-icon {
    color: #77b989;
    font-size: 14px;
}



.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    
    position: absolute;
    bottom: 125%; /* Position au-dessus de l'icône */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    
    /* Petite flèche */
    white-space: nowrap;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}


.custom-checkbox {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    padding-left: 30px; /* Décalage pour placer la case */
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox .checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: background 0.3s ease-in-out;
}

/* Changement de style si cochée */
.custom-checkbox input:checked + .checkmark {
    background-color: #77b989;
    border: 1px solid #77b989;
}

/* Ajouter un icône ✓ */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}
