.table thead th {
	background-color: #f8f9fa;
	border-bottom: 3px solid #dee2e6;
}
.table tbody tr {
	cursor: pointer;
}
.k-badge {
	background-color: #dc3545;
	color: white;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.8em;
}
.d-badge {
	background-color: #0dcaf0;
	color: white;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.8em;
}
.c-badge {
	background-color: #198754;
	color: white;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.8em;
}
mark {
	background-color : yellow;	
	border-radius: 10px;
}

#categ {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.categ-item {
    display: grid;
    grid-template-columns: 100% 1fr;
    gap: 0.5rem;
    align-items: center;
}


.categ-item select {
    font-size: 0.875rem;
}

/* Pour les très petits écrans */
@media (max-width: 576px) {
    #categ {
        grid-template-columns: 1fr;
    }
}


