/**
 * Context Menu Delete Styles
 * Extension des styles notion-action-bar pour le menu de suppression
 */

/* ============================================
   BOUTONS DELETE SPECIFIQUES
   ============================================ */

/* Bouton supprimer - rouge au hover */
#divContextMenuDelete .action-bar-btn.action-bar-delete:hover {
    background: rgba(235, 87, 87, 0.1);
    color: rgb(235, 87, 87);
}

/* Bouton supprimer toutes - rouge au hover */
#divContextMenuDelete .action-bar-btn.action-bar-delete-all:hover {
    background: rgba(235, 87, 87, 0.1);
    color: rgb(235, 87, 87);
}

/* ============================================
   HIGHLIGHT DE LA TACHE CIBLEE
   ============================================ */

.cellProject.context-menu-target,
.cellProjectBiseau1.context-menu-target,
.cellProjectBiseau2.context-menu-target {
    outline: 3px solid #dc3545 !important;
    outline-offset: -1px;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.25) !important;
    z-index: 100 !important;
}

/* Animation de suppression */
.cellProject.task-deleting,
.cellProjectBiseau1.task-deleting,
.cellProjectBiseau2.task-deleting {
    opacity: 0.5;
    transform: scale(0.95);
    transition: opacity 0.2s, transform 0.2s;
}

/* ============================================
   PRINT - MASQUER LE MENU
   ============================================ */

@media print {
    #divContextMenuDelete {
        display: none !important;
    }
}
