#versiones, .node--type-cges-applications .region--third .btn.versiones{
  display: none;
}
.json-content, table {
   width: 100%;
 }
 
 /* Style pour le tbody */
 .json-content table tbody tr td.estado {
   text-transform: uppercase;
 }
 
 .json-content table tbody tr td.abierta {
   color: #55D148;
   font-weight: 500;
 }
 
 .json-content table tbody tr td.resolucion {
   color: #003A63;
   font-weight: 500;
 }
 
 .json-content table tbody tr td {
   border: none;
 }
 
 /* Responsive à partir de 1200px et en dessous */
 @media (max-width: 1200px) {
   .json-content table, 
   .json-content table thead, 
   .json-content table tbody, 
   .json-content table th, 
   .json-content table td, 
   .json-content table tr {
     display: block;
     width: 100%;
   }
 
   /* Masquer les en-têtes du tableau */
   .json-content table thead {
     display: none;
   }
 
   /* Ajouter de l'espace entre les "lignes" */
   .json-content table tbody tr {
     margin-bottom: 20px;
   }
 
   /* Chaque cellule td devient un bloc avec son étiquette */
   .json-content table tbody tr td {
     padding-left: 50%;
     position: relative;
     text-align: left;
     border-bottom: 1px solid #eee;
   }
 
   /* Ajouter les titres des colonnes avant chaque cellule */
   .json-content table tbody tr td:nth-child(1)::before {
     content: "Título";
     position: absolute;
     left: 10px;
     font-weight: bold;
   }
 
   .json-content table tbody tr td:nth-child(2)::before {
     content: "Descripción";
     position: absolute;
     left: 10px;
     font-weight: bold;
   }
 
   .json-content table tbody tr td:nth-child(3)::before {
     content: "Estado";
     position: absolute;
     left: 10px;
     font-weight: bold;
     text-transform: capitalize !important;
     color: #333333 !important;
   }
 
   .json-content table tbody tr td:nth-child(4)::before {
     content: "Fecha deseada finalización";
     position: absolute;
     left: 10px;
     font-weight: bold;
   }
 
   /* Supprimer la bordure sur la dernière cellule de chaque ligne */
   .json-content table tbody tr td:last-child {
     border-bottom: 0;
   }
 }
 