/* Désactiver la sélection de texte */
table {
    user-select: none; /* Empêche la sélection de texte */
}

/* Style pour l'effet d'appui long */
.long-press {
    animation: zoom 0.5s forwards; /* Animation zoom avant */
  background-color: rgba(0, 0, 0, 0.1); /* Fond légèrement gris */
  transition: background-color 0.3s; /* Transition douce */
}

@keyframes zoom {
    0% {
        transform: scale(1); /* Taille normale */
    }
    50% {
        transform: scale(1.05); /* Agrandissement */
    }
    100% {
        transform: scale(1); /* Retour à la taille normale */
    }
}
.clicable-row {
    display: table;
    width: 93%;
    margin-left: auto;
    margin-right: auto;
	/* border-bottom-width: 1rem; */
  }
.clicable-row td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .clicable-row td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
#listeop, .operationsTable {
	background-color: #e9ecef;
}
.table-group-divider {
	border-color: #e9ecef;
}
.operationsTable {
	display: table;
}
/* Classe pour la surbrillance temporaire */
.highlight {
    background-color: yellow; /* Couleur de surbrillance */
    transition: background-color 1s ease-out; /* Transition pour la disparition progressive */
}
/* Style pour la superposition de fond */
.confirmation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: top;
    justify-content: center;
    z-index: 9999;
}

/* Style pour la boîte de confirmation */
.confirmation-dialog {
    top: 10px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    height: 150px;
    width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.confirmation-dialog button {
    margin: 10px;
    padding: 8px 16px;
    cursor: pointer;
}
a.periodic {
	text-decoration: none;
	color: #ffffff;
	font-weight: bolder;
}
.cacher {
	display: none;
}
.offcanvas {
  z-index: 1040; /* Valeur par défaut de Bootstrap */
}

.offcanvas.active {
  z-index: 1050; /* Valeur plus élevée pour l'offcanvas actif */
}