/* ==========================================
   Global Dark Theme Override
   ========================================== */

/* 背景を全体的に #1c1c1c に統一 */
html, body, #wrapper, #container, #contents, #menubar, #header, #footer {
    background-color: #1c1c1c !important;
    color: #FFFFFF !important;
}

/* すべての文字を白に統一 */
* {
    color: #FFFFFF !important;
    background-color: transparent !important;
}

/* aタグ（リンク）も白く統一 */
a, a:link, a:visited, a:hover, a:active {
    color: #FFFFFF !important;
    text-decoration: none !important;
}

/* テーブル・ブロック系も白い線で統一 */
table, th, td, tr {
    border-color: #FFFFFF !important;
    background-color: #1c1c1c !important;
}

/* 引用やコードブロックも同じトーンに */
blockquote, pre, code, xmp, plaintext {
    background-color: #1c1c1c !important;
    border-left: 3px solid #FFFFFF !important;
    border-bottom: 1px solid #FFFFFF !important;
    color: #FFFFFF !important;
}

/* atwiki 特有の紫リンクなどを強制上書き */
a[href], .wiki_anchor, .wikilink, .diff_added, .diff_removed {
    color: #FFFFFF !important;
}

/* 特定のspanや強調表現も白統一 */
span, b, strong, em, i, u, small {
    color: #FFFFFF !important;
}

/* フォーム要素も調整 */
input, textarea, select, button {
    background-color: #1c1c1c !important;
    color: #FFFFFF !important;
    border: 1px solid #FFFFFF !important;
}

/* ==========================================
   Global Dark Theme Override (All white text)
   ========================================== */

/* 背景を全体的に #1c1c1c に統一 */
html, body, #wrapper, #container, #contents, #menubar, #header, #footer {
    background-color: #1c1c1c !important;
    color: #FFFFFF !important;
}

/* すべての文字を白に統一 */
* {
    color: #FFFFFF !important;
    background-color: transparent !important;
}

/* リンクも白に統一 */
a, a:link, a:visited, a:active, a:hover {
    color: #FFFFFF !important;
    text-decoration: none !important;
}

/* 上部メニューバーの修正 */
#globalmenubar, #menubar2, #header_menu, .menubar, .menu, .nav, .dropdown, .dropdown-menu {
    background-color: #1c1c1c !important;
    color: #FFFFFF !important;
    border: none !important;
}

/* メニュー内の項目 */
#globalmenubar a, #menubar2 a, #header_menu a, .menubar a, .menu a, .nav a, .dropdown-menu a {
    background-color: #1c1c1c !important;
    color: #FFFFFF !important;
}
#globalmenubar a:hover, #menubar2 a:hover, #header_menu a:hover,
.menubar a:hover, .menu a:hover, .nav a:hover, .dropdown-menu a:hover {
    background-color: #333333 !important;
    color: #FFFFFF !important;
}

/* ドロップダウン項目（開いた時の背景） */
.dropdown-menu {
    background-color: #1c1c1c !important;
    border: 1px solid #FFFFFF !important;
}

/* テーブルや罫線 */
table, th, td, tr {
    border-color: #FFFFFF !important;
    background-color: #1c1c1c !important;
}

/* 引用やコードブロック */
blockquote, pre, code, xmp, plaintext {
    background-color: #1c1c1c !important;
    border-left: 3px solid #FFFFFF !important;
    border-bottom: 1px solid #FFFFFF !important;
    color: #FFFFFF !important;
}

/* 特定のリンクや内部要素 */
a[href], .wiki_anchor, .wikilink, .diff_added, .diff_removed {
    color: #FFFFFF !important;
}

/* 強調表現やspanなど */
span, b, strong, em, i, u, small {
    color: #FFFFFF !important;
}

/* フォーム類 */
input, textarea, select, button {
    background-color: #1c1c1c !important;
    color: #FFFFFF !important;
    border: 1px solid #FFFFFF !important;
}

/* メニュー内の選択項目が反転して白くならないよう調整 */
.dropdown-menu li:hover > a,
.dropdown-menu li.active > a {
    background-color: #333333 !important;
    color: #FFFFFF !important;
}