@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/* ==========================================
   🤖 BULL BEAR 9 専用ダッシュボードスタイル
   ========================================== */

/* ページ全体の背景をダークモード風にする（必要に応じて） */
.page-id-xxxxx .entry-content { 
    background-color: #1a1e24 !important;
    color: #ffffff !important;
    padding: 30px !important;
    border-radius: 8px;
}

/* ヘッダーエリアのコードと銘柄名 */
.entry-content h2, .entry-content h3 {
    color: #ffffff !important;
    font-weight: 700;
}

/* BULL / BEAR 判定サインのバッジ装飾 */
.side-bull {
    background-color: #ff334b !important; /* BULLは鮮やかな赤 */
    color: #ffffff !important;
    padding: 10px 25px;
    font-size: 24px;
    font-weight: 800;
    border-radius: 4px;
    display: inline-block;
}
.side-bear {
    background-color: #007aff !important; /* BEARは鮮やかな青 */
    color: #ffffff !important;
    padding: 10px 25px;
    font-size: 24px;
    font-weight: 800;
    border-radius: 4px;
    display: inline-block;
}

/* テクニカル指標の各ボックス（Cocoonの白抜きボックスをハック） */
.wp-block-cocoon-blocks-blank-box, 
.blank-box {
    background-color: #252b35 !important; /* 深いグレー */
    border: 1px solid #3f4756 !important; /* 高級感のある細い境界線 */
    border-radius: 6px !important;
    color: #ffffff !important;
    padding: 20px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15) !important;
}

/* ボックス内のタイトル（ボリンジャーバンドなど） */
.blank-box .blank-box-title {
    font-size: 14px !important;
    color: #8a99ad !important; /* 薄いグレーでスタイリッシュに */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border-bottom: 1px solid #3f4756;
    padding-bottom: 5px;
}

/* 下部コメントエリア */
.wp-block-cocoon-blocks-info-box {
    background-color: #1f242d !important;
    border-left: 4px solid #ffcc00 !important; /* サインカラーの黄色 */
    color: #ffffff !important;
    padding: 20px !important;
    font-size: 16px;
    line-height: 1.6;
}

/* データがまだ入っていない部分の仮表示 */
.report-empty {
    color: #556175;
    font-style: italic;
}


