/* PC向けの基本設定（右下固定） */
#dify-chatbot-bubble-button {
    position: fixed !important;
    bottom: 30px !important;
    right: 20px !important;
    z-index: 1000000 !important;
}

#dify-chatbot-bubble-window {
    position: fixed !important;
    bottom: 110px !important;
    right: 20px !important;
    z-index: 999999 !important;
    width: 320px !important;
    height: 50vh !important;
}

/* スマホ（画面幅767px以下）向けの最終調整 */
@media screen and (max-width: 767px) {
    #dify-chatbot-bubble-button {
        left: 10px !important;  /* 左端にさらに寄せてボタンとの距離を確保 */
        right: auto !important;
        bottom: 150px !important; /* 110pxからさらに上げ、完全に固定バーを避ける */
    }

    #dify-chatbot-bubble-window {
        left: 5vw !important;
        right: auto !important;
        bottom: 210px !important; /* ボタンの位置に合わせてウィンドウも上部へ */
        width: 90vw !important;
        height: 50vh !important;
    }
}