
        body {
            font-family: Arial, sans-serif; /* フォントをArialに設定 */
            background-color: #f8f9fa; /* 背景色を設定 */
            padding: 20px;
        }

        h1 {
            color: #6c757d; /* タイトルの色を設定 */
            border-bottom: 2px solid #6c757d; /* タイトルの下にボーダーを設定 */
            padding-bottom: 10px; /* タイトルの下にpaddingを設定 */
        }

        button {
            color: #fff; /* ボタンのテキストの色を設定 */
            background-color: #007bff; /* ボタンの背景色を設定 */
            border: none; /* ボタンのボーダーを非表示に設定 */
            padding: 5px 10px; /* ボタンのpaddingを設定 */
            border-radius: 5px; /* ボタンの角を丸く設定 */
            cursor: pointer; /* ボタンのカーソルを手の形に設定 */
        }

            button:hover {
                background-color: #0056b3; /* ボタンにマウスをホバーしたときの背景色を設定 */
            }

        input[type="number"] {
            padding: 5px; /* 数字入力フィールドのpaddingを設定 */
            border-radius: 5px; /* 数字入力フィールドの角を丸く設定 */
            border: 1px solid #ced4da; /* 数字入力フィールドのボーダーの色を設定 */
            text-align: right; /* 数字を右寄せに設定 */
        }

        footer {
            font-size: 0.7em;
            color: #ddd;
            background-color: #343a40;
            padding: 10px;
            left: 0;
            bottom: 0;
            width: 100%;
            text-align: center;

        }
            footer a {
                color: #000; /* リンクテキストの色を黒に設定 */
                text-decoration: none; /* アンダーラインを削除 */
                background-color: #f0f0f0; /* リンクの背景色を薄い灰色に設定 */
                padding: 5px 10px; /* リンクの内側のスペースを設定 */
                border-radius: 5px; /* リンクの角を丸くする */
                transition: background-color 0.3s; /* 背景色の変化を滑らかにする */
            }

                footer a:hover {
                    background-color: #e0e0e0; /* マウスオーバー時の背景色を少し暗い灰色に設定 */
                }

        #usageInstructions {
            margin-bottom: 20px;
        }
        .update-title {
            font-weight: bold;
            font-size: 1.2em;
            color: #333;
            margin-bottom: 10px;
        }

        .update-list {
            list-style-type: disc;
            padding-left: 20px;
        }

        .update-list li {
            margin-bottom: 5px;
            color: #555;
        }
