/* Styles pour la modale de pointage (certification des comptes)
 * Annotation des lignes modifiées/supprimées depuis la dernière certification
 * (table operation_snapshot, endpoint GET /certifications/changes)
 */

/* Ligne modifiée : liseré orange + fond légèrement teinté */
.certif-row-modifiee {
    border-left: 3px solid #fd7e14;
    background-color: rgba(253, 126, 20, 0.06);
}

/* Champ modifié à l'intérieur d'une ligne modifiée : entouré en orange */
.certif-champ-modifie {
    outline: 2px solid #fd7e14;
    outline-offset: -2px;
    border-radius: 3px;
}

/* Ligne supprimée : encadrement rouge complet (comme les champs modifiés) + hachures marquées, pas de case à cocher */
.certif-row-supprimee {
    outline: 2px solid #dc3545;
    outline-offset: -2px;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(220, 53, 69, 0.16),
        rgba(220, 53, 69, 0.16) 10px,
        rgba(220, 53, 69, 0.32) 10px,
        rgba(220, 53, 69, 0.32) 20px
    );
}

.certif-row-supprimee td {
    color: #6c757d;
    text-decoration: line-through;
    text-decoration-color: #dc3545;
    text-decoration-thickness: 2px;
}
