/* Pas d'infos pour les DataTables */
/* .dataTables_info {
} */

/**********************************************************************

            CHECKBOX custom

**********************************************************************/

/* Masquer la case à cocher par défaut */
/* input[type="checkbox"] {
    display: none;
  } */

/* Style de l'étiquette de la case à cocher */
/* .custom-checkbox {
    display: inline-block;
    width: 24px;  
    height: 24px; 
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
  } */

/* Style pour l'état coché */
/* input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }  */

input:invalid {
  border: 2px solid red;
}

.text-rouge {
  color: red;
}

.rouge {
  border: 2px solid red;
}

.bleu {
  background-color: blue;
}


input[type=checkbox]:checked+label:before {
  background-color: #2d8a44;
}

input[type=checkbox]:checked+label:before,
input[type=checkbox]:not(:checked)+label:before {
  border-radius: 5px;
  border-color: #D6D6D6;
}

/**********************************************************************

            La DataTable serie

**********************************************************************/

.custom-table-depense {
  border-collapse: collapse;
  width: 100%;
  margin: 0px;
}

.custom-table-depense th,
.custom-table-depense td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  font-size: 16px;
}

.custom-table-depense th {
  background-color: #f2f2f2;
  color: #333;
}

.custom-table-depense tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.custom-table-depense tbody tr:hover {
  background-color: #df7676;
}


/* Styles spécifiques pour les petits écrans */
/*
@media screen and (max-width: 1200px) {
    .custom-table-serie th:nth-child(3), 
    .custom-table-serie td:nth-child(3) {
        display: none;
    }
}*/
/* Styles spécifiques pour les petits écrans */
@media screen and (max-width: 768px) {}