/* On applique des styles spécifiques pour le langage Python dans les blocs de code */

.hljs {
  background: #1e1e1e !important;
  color: #d4d4d4 !important;
  font-family:'Cascadia Code', Consolas, 'Courier New', monospace;
  padding: 1em;
  border-radius: 8px;
  overflow-x: auto;
  line-height: 1.5;
  font-size: 0.9em;
  font-weight: normal;
}

/* Personnalisation des couleurs */
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-section,
.hljs-link {
  color: #569CD6;
}

.hljs-function .hljs-title {
  color: #DCDCAA;
}

.hljs-string,
.hljs-title.class_ {
  color: #CE9178;
}

.hljs-comment {
  color: #6A9955;
  font-style: italic;
}

.hljs-number {
  color: #B5CEA8;
}