/* プログラミング言語及び演習Ⅰ用カスタムCSS */

/* コードブロックのカスタマイズ */
.md-typeset pre > code {
    line-height: 1.6;
    font-size: 0.9em;
}

/* テーブルのスタイル */
.md-typeset table:not([class]) {
    font-size: 0.9rem;
}

.md-typeset table:not([class]) td {
    padding: 0.5em 1em;
}

/* アドモニションブロックのカスタマイズ */
.md-typeset .admonition,
.md-typeset details {
    font-size: 0.9rem;
}

/* 日本語フォントの最適化 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ナビゲーションの日本語最適化 */
.md-nav {
    font-size: 0.7rem;
}

/* 見出しのスタイル */
.md-typeset h1 {
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 1px solid #eaecef;
    padding-bottom: 0.3em;
}

.md-typeset h2 {
    color: #1a73e8;
    font-weight: 600;
    border-bottom: 1px solid #eaecef;
    padding-bottom: 0.2em;
    margin-top: 1.5em;
}

/* ソースコードブロックのカラースキーム */
.codehilite .c1 { color: #6a737d; } /* コメント */
.codehilite .k { color: #d73a49; }  /* キーワード */
.codehilite .kt { color: #d73a49; } /* 型名 */
.codehilite .s { color: #032f62; }  /* 文字列 */
.codehilite .mi { color: #005cc5; } /* 整数 */
.codehilite .mf { color: #005cc5; } /* 浮動小数点数 */
