/* 1. 背景：深い宇宙の紺色 */
body, #id_all {
    background-color: #0d1117 !important;
}

/* 2. メイン本文：宇宙船のモニター画面 */
#id_main {
    background-color: #1a1a1a !important; /* ほぼ黒 */
    border: 6px solid #444 !important;    /* 船体の厚い壁 */
    border-radius: 30px !important;       /* 角丸を強調 */
    padding: 25px !important;
    box-shadow: 0 0 20px #00d1ff !important; /* 青い発光（スキャンの光風） */
}

/* 3. リンク：クルーのカラー（シアン） */
a {
    color: #00d1ff !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    border-bottom: 2px solid #00d1ff; /* 下線でドット感を代用 */
}
a:hover {
    color: #f21717 !important; /* インポスター */
    border-bottom-color: #f21717;
}

/* 4. 見出し：EMERGENCY MEETING ボタン（本気） */
h1, h2, .atwiki-heading {
    background-color: #f21717 !important; /* 鮮やかな赤 */
    color: #ffffff !important;           /* ここは白文字で視認性確保 */
    border: 5px solid #000 !important;   /* 太い黒枠 */
    border-radius: 15px !important;
    padding: 15px !important;
    text-align: center !important;
    box-shadow: 0 8px 0 #800 !important;  /* ボタンの立体感（押し込めそう） */
    margin-bottom: 20px !important;
}

/* 5. 左右メニュー：タスクリスト（バインダー風） */
#id_left_column, #id_right_column {
    background-color: #c0c0c0 !important; /* グレーの板 */
    border: 5px solid #333 !important;    /* 太い枠 */
    border-radius: 10px !important;
    padding: 10px !important;
}

/* メニュー内の項目：タスクっぽく */
#id_left_column li, #id_right_column li {
    background: #fff !important;
    color: #000 !important;
    margin-bottom: 5px !important;
    padding: 5px !important;
    border: 2px solid #000 !important;
    list-style: none !important;
}

/* 6. 文字：視認性限界の「白」か「黒」に固定 */
#id_main p, #id_main div, #id_main span, #id_main li {
    color: #ffffff !important;
    font-size: 1.1em !important;
}
