/* HTMLを触らずに全ページに帯を出す設定 */
body::before {
    content: "【検証環境】MySQL 8.0 移行テスト中 - 検証DB接続中";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    background-color: #ff0000 !important; /* 真っ赤 */
    color: #ffffff !important;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    z-index: 2147483647; /* 可能な限り手前に */
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    pointer-events: none;
}

/* 全体の表示位置を少し下げて帯と被らないようにする */
html {
    margin-top: 30px !important;
}
