/* Bordure autour du conteneur de code */
.highlight {
    border: 1px solid #ddd; /* Couleur et épaisseur de la bordure */
    border-radius: 4px;      /* Coins arrondis (optionnel) */
    padding: 0px;
    overflow: auto;          /* Gère le débordement du texte long */
}

.highlight span.filename {
    margin-top: 0 !important;
}

.highlight pre {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
}
/* Espace après un bloc de code surligné */
.highlight {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
}

/* Supprimer la marge supérieure du tableau de code */
.highlighttable {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
