/* 健康系ツール共通「入力の引き継ぎ」バー。
   各アプリのルートID配下に差し込まれるが、クラス接頭辞 nvbhp- で衝突を避けている。
   アプリごとの配色に寄せず中立にすることで、ツール横断の機能であることを見た目でも示す。 */

.nvbhp {
    align-items: center;
    background: #fbf8f2;
    border: 1px solid #e6ddcc;
    border-left: 3px solid #b08d46;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: space-between;
    margin: 0 0 16px;
    padding: 9px 13px;
}

.nvbhp-note {
    color: #6b5c45;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.nvbhp-btn {
    background: #8a6d3b;
    border: none;
    border-radius: 4px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    padding: 6px 14px;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
    width: auto;
}

.nvbhp-btn:hover {
    background: #6f5730;
}

.nvbhp-btn:disabled {
    background: #b6a88f;
    cursor: default;
}

@media (max-width: 480px) {
    .nvbhp {
        justify-content: flex-start;
    }

    .nvbhp-btn {
        width: 100%;
    }
}
