/* _static/custom.css */

/* === Светлая тема === */
body.light-theme div[class^="highlight"] {
    background: #e8e8e8 !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 4px !important;
    padding: 8px !important;
}
body.light-theme div[class^="highlight"] pre {
    background: transparent !important;
}

/* === Тёмная тема === */
body.dark-theme div[class^="highlight"] {
    background: #2d2d2d !important;
    border: 1px solid #4a4a4a !important;
    border-radius: 4px !important;
    padding: 8px !important;
}
body.dark-theme div[class^="highlight"] pre {
    background: transparent !important;
}

body.dark-theme .highlight pre {
    color: #d4d4d4 !important;
}

/* === Цветная подсветка для тёмной темы (все языки) === */
body.dark-theme .highlight .k { color: #569cd6 !important; }  /* ключевые слова */
body.dark-theme .highlight .s { color: #ce9178 !important; }  /* строки */
body.dark-theme .highlight .c { color: #6a9955 !important; font-style: italic; }  /* комментарии */
body.dark-theme .highlight .m { color: #b5cea8 !important; }  /* числа */
body.dark-theme .highlight .nf { color: #dcdcaa !important; }  /* функции */
body.dark-theme .highlight .nt { color: #569cd6 !important; }  /* теги HTML/XML */
body.dark-theme .highlight .na { color: #9cdcfe !important; }  /* атрибуты */
body.dark-theme .highlight .nv { color: #9cdcfe !important; }  /* переменные */
body.dark-theme .highlight .o { color: #d4d4d4 !important; }   /* операторы */