

/* Responsive */

@media (max-width: 767px) {
    .fl-table {
        display: block;
        width: 100%;
    }
    .table-wrapper:before{
        content: "Scroll horizontally >";
        display: block;
        text-align: right;
        font-size: 11px;
        color: white;
        padding: 0 0 10px;
    }
    .fl-table thead, .fl-table tbody, .fl-table thead th {
        display: block;
    }
    .fl-table thead th:last-child{
        border-bottom: none;
    }
    .fl-table thead {
        float: left;
    }
    .fl-table tbody {
        width: auto;
        position: relative;
        overflow-x: auto;
    }
    .fl-table td, .fl-table th {
        padding: 20px .625em .625em .625em;
        height: 60px;
        vertical-align: middle;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        width: 120px;
        font-size: 13px;
        text-overflow: ellipsis;
    }
    .fl-table thead th {
        text-align: left;
        border-bottom: 1px solid #f7f7f9;
    }
    .fl-table tbody tr {
        display: table-cell;
    }
    .fl-table tbody tr:nth-child(odd) {
        background: none;
    }
    .fl-table tr:nth-child(even) {
        background: transparent;
    }
    .fl-table tr td:nth-child(odd) {
        background: #F8F8F8;
        border-right: 1px solid #E6E4E4;
    }
    .fl-table tr td:nth-child(even) {
        border-right: 1px solid #E6E4E4;
    }
    .fl-table tbody td {
        display: block;
        text-align: center;
    }
}


pre {
    background-color: #fafaf6;
    padding: 10px;
    border: 10px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: monospace;
    width: 700px;
    height: 400px;
    text-align: start;
  }



  .custom-listm li {
   
    padding-left: 200px; /* Ajoutez de la marge à gauche du texte */
}


.cadre {
    border: 5px solid #0b0c0c; /* Bordure de 2 pixels de large, couleur noire */
    padding: 0px; 
   
    text-align: center; /* Centrer le contenu à l'intérieur */
    display: inline-block; /* Afficher en tant qu'élément en ligne avec largeur automatique */
}


table {
    border-collapse: collapse;
    width: 100%;
  }
  
  th, td {
    border: 3px solid black;
    padding: 10px;
    text-align: center;
  }
  
  th {
    background-color: #3fa736;
  }
  
  td {
    background-color: #ffffff;
  }
  


.image-container {
    display: flex; /* Utilisez un conteneur flex pour aligner les images côte à côte */
  }
  
  .image-container img {
    width: 50%; /* Réglez la largeur des images à 50% pour qu'elles occupent chacune la moitié de la largeur du conteneur */
    height: auto; /* La hauteur sera ajustée automatiquement pour maintenir le ratio d'aspect */
  }
  