@charset "utf-8";
/* 全体のリセットとダークモード背景 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    /* より暗く、沈んだ背景色 */
    background-color: #121212; 
    /* 基本テキストカラーを白系に */
    color: #e0e0e0; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* コンテナの装飾 (ダークモード用) */
.status-container {
    /* わずかに明るい黒でコンテナを表現 */
    background-color: #1e1e1e; 
    border-radius: 12px;
    /* 影を少し強めに */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); 
    width: 100%;
    max-width: 500px;
    padding: 30px;
    text-align: center;
    /* カードのエッジを少し明るくして立体感を出す */
    border: 1px solid #333;
}

h1 {
    font-size: 24px;
    /* タイトルは鮮明に */
    color: #ffffff; 
    margin-bottom: 25px;
    font-weight: 700;
}

/* 稼働状況のスタイル（デフォルト：正常） */
.status-badge {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

/* ダークモード用のカラー調整 */
/* 正常稼働（メンテナンス予定あり含む）：鮮やかなグリーン */
.status-normal {
    background-color: #1a3a31; /* 深い緑 */
    color: #38e0b2; /* 鮮やかなミント */
    border: 2px solid #38e0b2;
}

/* メンテナンス中：鮮やかなオレンジ */
.status-maintenance {
    background-color: #3b2b1a; /* 深いオレンジブラウ */
    color: #ff9f43; /* 鮮やかなオレンジ */
    border: 2px solid #ff9f43;
}

/* 情報エリア */
.info-section {
    border-top: 1px solid #333; /* より暗い境界線 */
    padding-top: 20px;
    text-align: left;
}

.info-title {
    font-size: 16px;
    font-weight: bold;
    /* タイトルテキストは白系に */
    color: #b0bec5; 
    margin-bottom: 10px;
}

.info-content {
    font-size: 14px;
    /* コンテンツテキストは少し暗めに */
    color: #90a4ae; 
    line-height: 1.6;
    /* コンテンツの背景も暗く */
    background-color: #263238; 
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #37474f;
}

/* 更新日時 */
.update-time {
    margin-top: 25px;
    font-size: 12px;
    /* 更新日時テキストはさらに暗く */
    color: #607d8b; 
}