/* 全站「開啟通知」提示條 (pwa-notify.css) */

#up-notify-enable-tip {
    display: none;
    position: fixed;
    /* 疊在即時對話浮動按鈕（bottom:24px + 56px 高 + 12px 間距）正上方，避免兩者重疊 */
    bottom: 92px;
    right: 24px;
    z-index: 9999;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #f7f2ee;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #8A725A;
    box-shadow: 0 6px 20px rgba(170, 145, 119, 0.25);
    border: 1px solid rgba(170, 145, 119, 0.25);
}

#up-notify-enable-tip .up-notify-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #AA9177;
}

#up-notify-enable-btn {
    background: none;
    border: none;
    color: #8A725A;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

#up-notify-enable-btn:hover {
    text-decoration: underline;
}

#up-notify-enable-dismiss {
    background: none;
    border: none;
    color: #c3b3a4;
    cursor: pointer;
    padding: 0;
    margin-left: 2px;
}

#up-notify-enable-dismiss:hover {
    color: #8A725A;
}

@media print {
    #up-notify-enable-tip {
        display: none !important;
    }
}
